Skip to content

CoSimulator RDF

Andre Antakli edited this page Sep 3, 2021 · 8 revisions

Basically, an CoSimulator instance from RDF type mosim:CoSimulator (where mosim: is the @prefix of http://www.ajan.de/mosim-ns#) has the following parameters:

Subjects:

  • <CoSimulator> is a RDF Blank Node or a URI representing a CoSimulator Resource

Namspaces:

  • @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
  • @prefix mosim: <http://www.ajan.de/mosim-ns#>

RDF Structure: CoSimulator

Subject Predicate Object Literal Description
<CoSimulator> rdf:type mosim:CoSimulator
<CoSimulator> mosim:host <xsd:string> e.g. "http://localhost"
<CoSimulator> mosim:port <xsd:integer> e.g. 9011
<CoSimulator> mosim:eventType <xsd:string> e.g. "end"
<CoSimulator> mosim:callback <xsd:integer> e.g. 8093

Output stored in the Target Base

@prefix mosim: <http://www.ajan.de/mosim-ns#> .

_:abce # Instance URI
	a mosim:CoSimulator ;
	mosim:host "http://localhost" ;
	mosim:port 9090 ;
	mosim:eventType "end" ;
	mosim:callback 8093 .