Skip to content
Snippets Groups Projects
Select Git revision
  • d4b8c9455e91a8c9da08354ffc2e3905035be856
  • master default protected
2 results

canids_scores.csv

Blame
  • batch24.bpn 906 B
    // batch petri net
    
    model test;
    length unity= m ;
    time unity = m;
    
    network description
    places 
    
       place BP2 (batch)
            function (2, 8, 1) // speed, density, length
            initial marking {(0.2,0.5,1),(0.1,5,0.8),(0.5,8,0.5)} //length, density, poistion
    		steady marking {(0.5,8,1),(0.5,1,0.5)}
            output arc T2
    
       place BP3 (batch)
            function (2, 8, 1) // speed, density, length
            initial marking {(0.5,8,1)} //length, density, poistion
    		steady marking {(0.5,8,1),(0.5,1,0.5)}
            output arc T3
    
    
        place CP1 (continuous)
            initial marking {5.4} 
            steady marking {5}
            output arc T1
    
    transitions
    
        transition T1 (batch)
            flow (4)
    		steady flow (2)
            output arc BP2
    
        transition T2 (batch)
            flow (2)
    		steady flow (2)
            output arc BP3
    
        transition T3 (batch)
            flow (2)
    		steady flow (2)
            output arc CP1