[root]/Packages/Uintah/CCA/Components/ICE/EOS
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 38 (100.0%) | 258 (100.0%) | 6.7 |
wight | 6 (15.8%) | 197 (76.4%) | 32.8 |
xiongcw | 2 (5.3%) | 45 (17.4%) | 22.5 |
harman | 30 (78.9%) | 16 (6.2%) | 0.5 |
M EquationOfStateFactory.cc
M sub.mk
Modified EquationOfStateFactory to include new EOS model: HardSphereGas
Modified sub.mk so that new EOS will make correctly
Chuck Wight - Dept of Chemistry
6/12/207
0 lines of code changed in 4 files:
Added new equation of state for ICE materials: HardSphereGas
A SCIRun/src/Packages/Uintah/CCA/Components/ICE/EOS/HardSphereGas.cc
A SCIRun/src/Packages/Uintah/CCA/Components/ICE/EOS/HardSphereGas.h
useage in the UPS file (<ICE> section):
<EOS type="hard_sphere_gas">
<b> 1.4e-3 </b>
</EOS>
This EOS is a simple extension of the ideal gas EOS, but accounts for
the finite volume occupied by the molecules themselves, so causes the
computed pressure to be greater at high densities. The EOS is given by:
P(V-b) = RT (where b = specific volume of molecules)
Typical value for b is 1.4e-3 m^3/kg (e.g., for N2 or CO).
Chuck Wight - Dept of Chemistry, Univ of Utah
6/12/2007
197 lines of code changed in 2 files:
Performance improvement. Will not change results
-Changed list of boundary cells vector<IntVector> to vector<IntVector> *
-Nuked tabs
-changed variable names
bound -> bound_ptr
nbound -> nbound_ptr
sfcx -> sfcx_ptr
sfcy -> sfcy_ptr
sfcz -> sfcz_ptr
16 lines of code changed in 30 files:
solver for cubic equation to replace the old iterative solver
45 lines of code changed in 2 files: