00001 Info<< "Creating mass source\n" << endl; 00002 scalarTimeActivatedExplicitSourceList massSource 00003 ( 00004 "mass", 00005 mesh, 00006 dimMass/dimTime/dimVolume, 00007 composition.species() 00008 ); 00009 00010 00011 Info<< "Creating momentum source\n" << endl; 00012 vectorTimeActivatedExplicitSourceList momentumSource 00013 ( 00014 "momentum", 00015 mesh, 00016 dimMass*dimVelocity/dimTime/dimVolume, 00017 "U" 00018 ); 00019 00020 Info<< "Creating energy source\n" << endl; 00021 scalarTimeActivatedExplicitSourceList energySource 00022 ( 00023 "energy", 00024 mesh, 00025 dimEnergy/dimTime/dimVolume, 00026 "h" 00027 );