| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- include "primitives.alh"
- AtomicDEVSBlock Generator {
- initialState = "generating"
- name = "Generator"
- intTransition = $
- Element function intTransition():
- Element retValue
- retValue = create_node()
- dict_add_fast(retValue, "g_out", 0.3)
- return retValue!
- $
- }
- AtomicDEVSBlock Processor {
- initialState = "idle"
- name = "Processor"
- }
- AtomicDEVSBlock Collector {
- initialState = "waiting"
- name = "Collector"
- }
- OutputPort g_out {name = "g_out"}
- InputPort p_in {name = "p_in"}
- OutputPort p_out {name = "p_out"}
- InputPort c_in {name = "c_in"}
- DEVSBlockToPort(Generator, g_out) {}
- DEVSBlockToPort(Processor, p_in) {}
- DEVSBlockToPort(Processor, p_out) {}
- DEVSBlockToPort(Collector, c_in) {}
- CoupledDEVSBlock CoupledProcessor {
- name = "CoupledProcessor"
- }
- InputPort cp_in {name = "cp_in"}
- OutputPort cp_out {name = "cp_out"}
- DEVSBlockToPort (CoupledProcessor, cp_in) {}
- DEVSBlockToPort (CoupledProcessor, cp_out) {}
- DEVSInstance p1 {
- name = "p1"
- type = "Processor"
- }
- DEVSInstance p2 {
- name = "p2"
- type = "Processor"
- }
- SubModel (CoupledProcessor, p1) {}
- SubModel (CoupledProcessor, p2) {}
- InputPort p1_in {name = "p_in"}
- OutputPort p1_out {name = "p_out"}
- InputPort p2_in {name = "p_in"}
- OutputPort p2_out {name = "p_out"}
- DEVSInstanceToPort (p1, p1_in) {}
- DEVSInstanceToPort (p1, p1_out) {}
- DEVSInstanceToPort (p2, p2_in) {}
- DEVSInstanceToPort (p2, p2_out) {}
- Channel (cp_in, p1_in) {}
- Channel (p1_out, p2_in) {}
- Channel (p2_out, cp_out) {}
- CoupledDEVSBlock Root {
- name = "Root"
- }
- DEVSInstance generator {
- name = "generator"
- type = "Generator"
- }
- DEVSInstance coupledprocessor {
- name = "coupledprocessor"
- type = "CoupledProcessor"
- }
- DEVSInstance processor {
- name = "processor"
- type = "Processor"
- }
- DEVSInstance collector {
- name = "collector"
- type = "Collector"
- }
- SubModel (Root, generator) {}
- SubModel (Root, coupledprocessor) {}
- SubModel (Root, processor) {}
- SubModel (Root, collector) {}
- OutputPort generator_out {name = "g_out"}
- InputPort coupledprocessor_in {name = "cp_in"}
- OutputPort coupledprocessor_out {name = "cp_out"}
- InputPort processor_in {name = "p_in"}
- OutputPort processor_out {name = "p_out"}
- InputPort collector_in {name = "c_in"}
- DEVSInstanceToPort (generator, generator_out) {}
- DEVSInstanceToPort (coupledprocessor, coupledprocessor_in) {}
- DEVSInstanceToPort (coupledprocessor, coupledprocessor_out) {}
- DEVSInstanceToPort (processor, processor_in) {}
- DEVSInstanceToPort (processor, processor_out) {}
- DEVSInstanceToPort (collector, collector_in) {}
- Channel (generator_out, coupledprocessor_in) {}
- Channel (coupledprocessor_out, processor_in) {}
- Channel (processor_out, collector_in) {}
|