90 likes | 97 Views
Design discrete event simulations using Event Graphs, generate Java code with Simkit, and manipulate EG files. Define DTD for EG XML files, extract basic elements like events and edges. Event Graphs graphically represent simulation models.
E N D
EGGDT Event Graph Graphical Design Tool
EGGDT FEATURES • Design Discrete Event Simulations using Event Graphs (EG) • Generate Java source code using the Simkit. • Manipulate Event Graphs files. Now binary files. • OBJECTIVE of this project: Define a DTD for EG XML files
Style Sheet • Event Graph are graphical representation of a Event Discrete Simulation Model. • The Style Sheet extracts the basic elements. Events, Edges and Simulation Variables.
<Event> <Identification id="EV01"/> <EventCenter> <Point> <XCoordinate>12 </XCoordinate> <YCoordinate>300 </YCoordinate> </Point> </EventCenter> <Name name="Arrival"/> <OutgoingEdge id="SE01"/> <OutgoingEdge id="STE01"/> </Event> <Event> <Identification id="EV01"/> <Name>Arrival</Name> <OutgoingEdge id="SE01"/> <OutgoingEdge id="STE01"/> </Event> XSLT Event Example
<SelfEdge> <Identification id="SE01"/> <TargetEvent id="EV01"/> <SourceEndPoint> <Point> <XCoordinate>3423</XCoordinate> <YCoordinate>34</YCoordinate> </Point> </SourceEndPoint> <TargetEndPoint> …….. </TargetEndPoint> <SourceControlPoint> …… </SourceControlPoint> <TargetControlPoint> ……. </TargetControlPoint> </SelfEdge> <SelfEdge> <Identification id="SE01"/> <TargetEvent id="EV01"/> </SelfEdge> XSLT Edge Example