Skip to content
Snippets Groups Projects
Commit 2e47cc23 authored by Frank Gaede's avatar Frank Gaede
Browse files

- one more test ...

parent 22c16605
No related branches found
No related tags found
No related merge requests found
......@@ -73,10 +73,16 @@ int main(int argc, char** argv ){
//======== densities =========
double rho1 = lcdd.constant<double>( "rho1" ) / kg * m3 ;
double rho1 = lcdd.constant<double>( "rho1" ) / g * cm3 ;
double rho2 = lcdd.constant<double>( "rho2" ) / g * cm3 ;
test( STR(rho1), STR(1000.*rho2) , " densities [kg/m3] - [g/cm3] " ) ;
test( STR(rho1), STR(rho2) , " densities in [g/cm3] " ) ;
rho1 = lcdd.constant<double>( "rho1" ) / kg * m3 ;
rho2 = lcdd.constant<double>( "rho2" ) / kg * m3 ;
test( STR(rho1), STR(rho2) , " densities in [kg/cm3] " ) ;
// --------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment