[root]/CCA/Components/ICE/CustomBCs
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 50 (100.0%) | 159 (100.0%) | 3.1 |
jas | 37 (74.0%) | 125 (78.6%) | 3.3 |
luitjens | 6 (12.0%) | 17 (10.7%) | 2.8 |
harman | 6 (12.0%) | 9 (5.7%) | 1.5 |
dav | 1 (2.0%) | 8 (5.0%) | 8.0 |
Migrated a few more function calls to the new patch interface.
Deleted the old patch interface.
Removed __New() from the new patch interface calls.
17 lines of code changed in 6 files:
Move d_gravity from SimulationState.h to various components that use it.
12 lines of code changed in 5 files:
Revert revision 44731
3 lines of code changed in 6 files:
Move d_ref_press and d_gravity from SimulationState.h to the MPM and ICE
components.
8 lines of code changed in 5 files:
jetLodi.ups:
added a new input file that has a pulsating jet of air on the x- face, walls on
y+-, LODI on x+ and symmetric on z+-.
sine.(cc/h)
-Added sinusoidal change to vel_CC & vel_FC
- The user must have:
<SINE_BC>
<omega> 100 </omega>
<A> 10 </A>
<reference_pressure> 101325 </reference_pressure>
<reference_velocity> [10,0,0] </reference_velocity>
</SINE_BC>
in the input file.
ups_spec.xml
- updated the ups spe
0 lines of code changed in 4 files:
preprocess_Lodi_BCs()
getICEMaterials -> getMaterials
The user is inputting the material index not the index for just the ICE matls.
Confusing enough?
1 lines of code changed in 1 file:
problemSetup
- added bulletproofing so the user can't apply LODI bcs to "all" materials
addRequires()
- require gammaLabel in CC_exchange portion
preprocess_Lodi_BCs()
- corrected how we determine the material index. This bug surfaced when we switch the
location of the ICE and MPM material sections in the ups file.
8 lines of code changed in 1 file:
M CCA/Components/OnTheFlyAnalysis/particleExtract.cc
- Fixed compiler warnings. Use "()" around portions of if statements
to make them more clear (make explicit order of evaluation).
- Added 'default' to switch statement to quiet compiler complaint that some
options were not handled.
M CCA/Components/ICE/CustomBCs/LODI2.cc
- Fixed compiler warnings. Use "()" around portions of if statements
to make them more clear (make explicit order of evaluation).
M CCA/Components/Arches/Properties.cc
- Indented and added "{}" around some if statements. Quiets compiler
warnings and makes code easier to follow.
M CCA/Components/Arches/MCRT/ArchesRMCRT/RMCRTRadiationModel.h
- Added "{}" around some if statements. Quiets compiler warnings and
makes code easier to follow.
M Core/Grid/Variables/constVariable.h
M Core/Grid/Variables/constVariableBase.h
- Make getBaseRep() const. This allows for making a vector of
constVariable pointers like this:
constCCVariable<int> testCC;
vector<const constCCVariable<int>*> vCCVars;
// Get the testCC variable.
new_dw->get( testCC, lb->partCountLabel, 0, patch, Ghost::None, 0 );
// Create an empty constCCVariable.
constCCVariable<int> * testCCp = scinew constCCVariable<int>();
// Copy the pointer to the data (testCC) into our new variable.
testCCp->copyPointer( testCC );
// Save the new variable in a vector for future use.
vCCVars.push_back( testCCp );
- Commented out duplicate(ish) copyPointer() that can't be used anyway
because the compiler complains that it is ambiguous with the other
version of copyPointer(). (The parameters Variable& and
VariableBase& can't be distinguished.)
8 lines of code changed in 1 file:
Use findBlockWithOutAttributes() when searching for MaterialProperties
to avoid finding the MaterialProperties add=true node.
This is second part of the changes needed to replace the
AddMaterialProperties with attribute add=true for MaterialProperties.
4 lines of code changed in 3 files:
Remove sgi_stl_warnings include line
0 lines of code changed in 1 file:
Remove the Packages/Uintah/
92 lines of code changed in 15 files:
Remove the Packages/Uintah/
6 lines of code changed in 2 files: