Artifact 5fd3e01e3dce121c6a93ada07b5c3975a347f8729b1861f63570694e4d75dead:
- Executable file mtt/lib/examples/ABG/SimpleGasTurbineABG/Density_cr.r — part of check-in [af3953deae] at 2021-03-01 11:39:42 on branch master — Cleanup repository after cvs2git conversion. (user: jeff@gridfinity.com, size: 843) [annotate] [blame] [check-ins using] [more...]
- Executable file mttroot/mtt/lib/comp/compound/Thermal/CompressibleFlow/Density/Density_cr.r — part of check-in [9de8b4080d] at 2000-12-28 10:41:34 on branch origin/master — Put under RCS (user: gawthrop@users.sourceforge.net, size: 843) [annotate] [blame] [check-ins using]
- Executable file mttroot/mtt/lib/examples/ABG/SimpleGasTurbineABG/Density_cr.r — part of check-in [a5452a618d] at 2000-12-28 17:04:39 on branch origin/master — To RCS (user: gawthrop@users.sourceforge.net, size: 843) [annotate] [blame] [check-ins using]
% Constitutive relation file for Density (Density_cr.r) % Generated by MTT at Wed Mar 11 11:01:28 GMT 1998 OPERATOR Density; % Ideal gas FOR ALL R,Temperature,Pressure,Nothing LET Density(density,ideal_gas,R,effort,3, Pressure,effort,1, Temperature,effort,2, Nothing,flow,3 ) = Pressure/(R*Temperature); FOR ALL R,Temperature,Pressure,Nothing LET Density(specific_volume,ideal_gas,R,effort,3, Pressure,effort,1, Temperature,effort,2, Nothing,flow,3 ) = (R*Temperature)/Pressure; % Incompressible FOR ALL rho,Temperature,Pressure,Nothing LET Density(density,incompressible,rho,effort,3, Pressure,effort,1, Temperature,effort,2, Nothing,flow,3 ) = rho; FOR ALL rho,Temperature,Pressure,Nothing LET Density(specific_volume,incompressible,rho,effort,3, Pressure,effort,1, Temperature,effort,2, Nothing,flow,3 ) = 1/rho; END;