Changeset 655
- Timestamp:
- 10/08/2007 01:11:27 PM (15 months ago)
- Files:
-
- 1 modified
-
Modelica/trunk/Modelica/Thermal/FluidHeatFlow.mo (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Modelica/trunk/Modelica/Thermal/FluidHeatFlow.mo
r620 r655 1 1 within Modelica.Thermal; 2 2 3 package FluidHeatFlow 3 4 "Simple components for 1-dimensional incompressible thermo-fluid flow models" 4 5 extends Modelica.Icons.Library2; 5 6 annotation ( 6 version="1.6.5", versionDate="2007- 08-26",7 version="1.6.5", versionDate="2007-10-08", 7 8 preferedView="info",Documentation(info="<HTML> 8 9 This package contains very simple-to-use components to model coolant flows as needed to simulate cooling e.g. of electric machines: … … 1395 1396 protected 1396 1397 constant Real small = Modelica.Constants.small; 1398 constant Modelica.SIunits.VolumeFlowRate smallVolumeFlowRate = eps; 1397 1399 constant Real eps = Modelica.Constants.eps; 1398 1400 Real yLim = max(min(y,y1),0) "Limited valve opening"; … … 1403 1405 initial algorithm 1404 1406 assert(y1>small, "Valve characteristic: y1 has to be > 0 !"); 1405 assert(Kv1>small , "Valve characteristic: Kv1 has to be > 0 !");1407 assert(Kv1>smallVolumeFlowRate, "Valve characteristic: Kv1 has to be > 0 !"); 1406 1408 assert(kv0>small, "Valve characteristic: kv0 has to be > 0 !"); 1407 1409 assert(kv0<1-eps, "Valve characteristic: kv0 has to be < 1 !");
