blob: 8e6e1da63b79a64ad9961bc6bd11705cd6ef4958 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package Simulator
/* This aims to be steady state chemical engineering process simulator. Currently this contains Chemsep Database(contains more than 400 compounds), thermodynamic packages, Various themodynamic functions , Material stream(generic flash unit) and some generic unit operations and some Tests of these models*/
/* Chemsep Database is created by "Rahul Jain" and modified by "Pravin Dalve"*/
extends Modelica.Icons.Package;
import SI = Modelica.SIunits;
import Cv = Modelica.SIunits.Conversions;
annotation(
uses(Modelica(version = "3.2.3")));
end Simulator;
|