Ticket #1721: gaspropreties.mo

File gaspropreties.mo, 369 bytes (added by mohamed, 13 years ago)
Line 
1within ;
2package gaspropreties
3model gaspropreties1
4 protected
5Real pco1;
6equation
7when initial() then
8pco1=14.39;
9end when;
10end gaspropreties1;
11//*************************
12 model intake1
13 extends gaspropreties1;
14 protected
15 Real var;
16 equation
17 var=1/pco1;
18 end intake1;
19 annotation (uses(Modelica(version="3.1")));
20end gaspropreties;
21