Adding some functionality to the LU solver (ability to calculate determinant as a check for singular matrix)
Cleaning up DQMOM solver, adding ability to calculate and save out the moments
(This required a call in ExplicitSolver and a map to store the labels in ArchesLabel)
Also adding a compiler directive that can be used to dump matrices A, B, X, and Resid (this causes a big slowdown but will be useful for small/periodic/verification cases)
462 lines of code changed in 6 files:
Fixing a typo that's causing a "no compute for NewCCVelocity" crash
1 lines of code changed in 1 file:
Fixed a bug I accidentally added to the tiled regridder.
1 lines of code changed in 1 file:
Arches.cc:
1) Now copying phi into old_phi after initialization at the beginning of the simulation
2) Properly initializing ccVelocity (gas) at the beginning of the simulation
3) Initializing the particle velocity to the gas velocity at the start (we can debate if this is the right way to handle this)
DqMomEqn.cc:
1) Subtracting the Ax=b source instead of zeroing out the RHS (duh!) for the verification procedure
PartVel.cc:
1) Properly initializing the particle velocity at the start of a new timestep
21 lines of code changed in 3 files:
Removing debugging statements
0 lines of code changed in 1 file:
Using isnan function to test if dqmom source terms are nan
2 lines of code changed in 1 file:
Initializating particle velocities; this was causing nan on the boundaries
11 lines of code changed in 2 files:
Change int->unsigned int.
Fixed bullet proofing
4 lines of code changed in 1 file:
Forgot the header.
0 lines of code changed in 2 files:
Encode the patch set into less bits prior to performing the all gather. This should reduce the amount of data sent by at least a factor of 3 and possibly a factor of 6 on some machines.
98 lines of code changed in 1 file:
Turn off parallel space filling curve generation.
1 lines of code changed in 1 file:
Adding statements to prevent source terms to be NaN
4 lines of code changed in 1 file:
Forgot to actually add the new files (MMS1).
Changed = back to += (we need += because of multiple quadrature nodes...) in source terms but now we are initializing the source terms to zero before computing.
181 lines of code changed in 5 files:
1) added a "mms1" source term
2) added extra sources to dqmom equations for verification/debugging
3) added underscores for RHS, Fconv, Fdiff for naming consistency
4) added initialization for "mms1"
5) changed some += to = in a few coal models including coalgasmomentum.cc, coalgasdevol, and constantsrcterm
6) added compiler directive (VERIFY_DQMOM_TRANSPORT) for DQMOMEqn.cc for verification purposes. Note that ScalarEqn.cc doesn't need this because scalars are in general open to an arbitrary number of source terms.
138 lines of code changed in 9 files:
Simulation state is plotted at the bottom of the timestep.
Now plotting stress on the particles
Minor cleanup of debugging code.
Configured for translation of a bar in the x+ dir.
63 lines of code changed in 1 file:
-int8() -> int32()
-added bulletproofing to catch if a region is not divisble by R.dx.
-positionToNode()
add offset of 1 to the node number only in the first region (I hate indices starting at 1)
added print statement (commented out)
This has lots of error checking and plotting code just for this problem.
Now have 3 levels with a refinement ratio of 4 on each of the finer levels working
pure translation of a particle through the domain.
188 lines of code changed in 1 file:
Add timeout of one hour to each test.
1 lines of code changed in 1 file:
Use the 4.4 compilers for the build.
1 lines of code changed in 1 file:
The squeeze_32 is now using gcc 4.4 family of compilers and is doing a static
library build.
13 lines of code changed in 1 file:
remove advect_2L_MI from the mpmice_test cases since it was duplicated in
the mpmice_amr_test_cases.
1 lines of code changed in 1 file:
Add the explode2D_amr test to the mpmice_amr set of test cases.
25 lines of code changed in 1 file:
Static link fix.
0 lines of code changed in 2 files:
Static link fix.
0 lines of code changed in 2 files:
Static link fix.
0 lines of code changed in 2 files:
static link fix
0 lines of code changed in 2 files:
Added the DL library to the static linking line
1 lines of code changed in 1 file:
The bar is now specified using bar_min and bar_max. This allows the user to put
1 particle anywhere in the domain.
15 lines of code changed in 1 file:
Add lib necessary for (dynamic) mac linking.
1 lines of code changed in 1 file:
Move thread lib toward end of link line for static build.
5 lines of code changed in 3 files:
update_uda not ready for prime time yet.
1 lines of code changed in 1 file:
Cosmetics
0 lines of code changed in 2 files:
Allow for building 'sus' (et al) statically. Use the configure flag: --enable-static. For the most
part, you will not want a static build. However, in two cases you might:
1) To check for circular dependencies in the code. (Dynamic libs are forgiving in this regard.)
2) For machines that don't support shared libs (eg: AIX, some new micro-kernel Linux clusters, etc.)
Unfortunately when static linking, library order is important. There is no good way (that I know of)
to tell our build system to place the libs in a specific order, so I have hardcoded the libraries
that are necessary to static link each executable. (See CORE_STATIC_PSELIBS and CORE_STATIC_LIBS in
configVars.mk.)
Note, SUS previously build statically for AIX and Redstorm. A number of hard coded #defines for these
architectures have been replaced with more general code.
If a source code file needs to know that it is building statically (most won't, but some do), then it
will need to #include <sci_defs/compile_defs.h> and use the "STATIC_BUILD" #define'd var.
Some specific notes:
M testprograms/TestMatrix3/testmatrix3.cc
Since it is used in a library, it can't have a "main()" (as this causes two mains to show up when linking).
M configure.ac
- Go back to using 'autoconf' version 2.61 as the standard as it is available many places, and I can't
find 2.63 anywhere.
- Fixed a few uses of a $var that would cause shell script errors when not defined. (Placed it withing ""
so that it becomes an empty string (as opposed to a missing string).
5455 lines of code changed in 44 files:
Better comments.
0 lines of code changed in 2 files:
Cosmetics
0 lines of code changed in 2 files:
Place holder functions for future use (inserted to avoid future confusion).
8 lines of code changed in 3 files:
Remove circular dependency by moving WAIT_FOR_DEBUGGER stuff to Core/Exceptions
55 lines of code changed in 8 files:
Fix compiler warnings.
4 lines of code changed in 1 file:
Fix for some compiler warnings.
4 lines of code changed in 3 files:
removed some spew.
0 lines of code changed in 1 file:
Reduced the restrictions on the tiled regridder. Patch boundaries no longer need to line up (though the tile size must still divide evenly into the domain).
Removed the dynamic tile size code and other general cleanup.
93 lines of code changed in 2 files:
Possible fix for circular dependency.
18 lines of code changed in 6 files:
Fix compiler warning.
7 lines of code changed in 1 file:
added note on hard limit
2 lines of code changed in 1 file:
Renable scrubbing. Disabled an error criteria that doesn't seem to be valid.
3 lines of code changed in 2 files:
Added a new SCI_DEBUG called WaitForDebugger.
This will cause sus to wait for a debugger if it crashes or throws an exception.
To use add WaitForDebugger:+ to your SCI_DEBUG line. When a crash occurs you will see a message that contains
hostname and the pid. Then open a terminal on the host and attach gdb using `gdb --pid <pid>`.
25 lines of code changed in 10 files:
Put a conditional for dealing with a particular erosion algorithm back in. This
should get the RT passing again without the need for replacing gold standards.
5 lines of code changed in 1 file:
Removed unnecessary error checking. The computes/requires framework should handle these checks.
202 lines of code changed in 22 files:
Allocate cellInfo
5 lines of code changed in 1 file:
1) Turned off scrubbing per Justin's recommendation
2) For mpmArches, cellInformation is computed in doMomExchange and then required from the new_dw thereafter.
3) Removed the empty emitNormal because it is no longer needed
10 lines of code changed in 5 files:
Fixed compiler warning.
0 lines of code changed in 2 files:
- added option to eject from main time integration loop after max_timesteps is reached.
- positionToNode()
computation of node now takes into account different dx for each region
14 lines of code changed in 1 file:
Fixing the missing computes for cellInfo.
19 lines of code changed in 3 files:
Implementing an empty emitNormal for PerPatch type variables so that the code can get past the checkpointing.
5 lines of code changed in 1 file:
Removed the level index queries they alread exist under different names.
6 lines of code changed in 3 files:
Added queries to get the maximum and minimum cell index for the level.
Compute and store the total number of cells on the level.
Changed totalCells to return the stored number of cells instead of looping through all patches and counting the cells.
30 lines of code changed in 2 files:
dt is now dynamically computed.
findNodesAndWeights()
- turned off comparison of old vs new method of computing shape functions
20 lines of code changed in 1 file:
-added a new problem called "advectBlock" which is just translation of particles
-BCValue -> velG_BCValue
-Each problem is responsible for setting velG_BCValue
72 lines of code changed in 1 file:
- print out node position and region of influcence variables Lx during intialization
- change pre allocation (1,NP) -> (NP,1) (1,NN) -> (NN,1), (1,Bignum)->(BigNum,1)
so it's easier to read when printing data to the screen.
- computing total momentum every timestep
- Writing conserved quantities (totalMom, totalEng, KE, SE) to a file.
- Writing errors( totalEng_err, totalMom_err, and tipDeflect_err) to a file
84 lines of code changed in 1 file:
use delete[] instead of delete.
Added some more debugging spew.
28 lines of code changed in 1 file:
Compiler warnings.
Throw exceptions if call Patch::numFaces and Patch::invalidFace.
9 lines of code changed in 4 files:
Added some debugging output
6 lines of code changed in 1 file:
- include dx in the derivative of the shape function calculation (Gs)
- added findNodesAndWeights_gimp() which is equation 15. (not used)
- added version of findNodesAndWeights() that computes equation 14.
- added section to compute the zone of influence Lx_minus Lx_plus for a
composite grid with several regions with different dx.
- added code to compute the node position for a composite grid with several
regions with different dx.
All machinery is in place to run problems with mesh refinement.
Currently, setup with 3 regions, all at the same resolution.
128 lines of code changed in 1 file:
Compiler warning fixes.
56 lines of code changed in 24 files:
Added more profiling to RGTimes
38 lines of code changed in 1 file:
Fixing sub.mk to remove warning. Thanks Dav!
0 lines of code changed in 2 files:
removed spew.
0 lines of code changed in 1 file:
Reuse the grid and modified some of the reuse logic for materials.
10 lines of code changed in 1 file:
Optimizations for speeding up the uda reading
37 lines of code changed in 1 file:
Gave SpatialOps a lobotomy. Now linking in all factories, models, sources, and equations from the Arches code base rather than maintaining two copies. This should resolve any naming conflicts.
27 lines of code changed in 46 files:
Changed default directory to inputs
0 lines of code changed in 2 files:
Moved script to scripts directory, added ability to specify base directory.
100 lines of code changed in 1 file:
Fixed a bug in the tiled regridder that would cause regridding to occur more often than necessary.
Added the debug stream RGTimes which profiles the tiled regridder.
71 lines of code changed in 1 file:
Minor change in spew.
1 lines of code changed in 1 file:
Compiler warnings.
2 lines of code changed in 1 file:
Add SpatialOps back to the list so the code will compile.
2 lines of code changed in 3 files:
Return a non-zero exit if compilation fails.
0 lines of code changed in 2 files:
Do a make cleanreally first.
1 lines of code changed in 1 file:
Baby steps.
Added findNodesAndWeights() function that follows the nomenclature in the Hongbing
CMES paper.
72 lines of code changed in 1 file:
Add extradir to TransferTestResults class for moving data to dbg and opt
directories for the nightly builds.
8 lines of code changed in 1 file:
Removing SpatialOps from sub.mk files
0 lines of code changed in 2 files:
Forgot to do "svn move"
0 lines of code changed in 4 files:
Fixing naming conflict with ModelFactory by moving this model factory to SpatialOpsCoalModelFactory
111 lines of code changed in 12 files:
Cleaning up tabs/spacing, adding better descriptions, restoring some scalar stuff that was (accidentally?) deleted
69 lines of code changed in 2 files:
1) Normalizing the initial value of the dqmom variable using the scaling factor in the problemSetup of the respective equation.
2) Split initialization of weights into a separate method so that they can be used later to initialize weighted abscissas
3) Overloaded initializationFunction to deal with weighted abscissas (multiplication by a weight)
277 lines of code changed in 5 files:
Added code that allows the space-filling curves to be generated in serial for timing comparaisons.
33 lines of code changed in 1 file:
Replace ShellCommand with Configure and Compile which will keep track of
warnings.
31 lines of code changed in 1 file:
Swapping Y1 and Y2
4 lines of code changed in 1 file:
Create TransferTestResults class that will copy the TestResults directory
from the various build slaves and store them on the buildbot webserver.
Add a link to the waterfall page so that the TestResults can be viewed
for each test.
37 lines of code changed in 1 file:
Only move failed test cases to the TestResults directory.
3 lines of code changed in 1 file:
Create separate TestResults directory that stores the individual
gzipped tar file for each test case.
11 lines of code changed in 1 file:
Fixed so the title changes with each test. The results are crap but at least the plot title is right.
3 lines of code changed in 1 file:
-turned off some of the excess output
- now saving an eps plot for every variable compared. Right now it's temp_CC, rho_CC, Press_CC, Vel_CC.
- now saving temp_CC, rho_CC, Press_CC, Vel_CC to a file for comparison plots later.
13 lines of code changed in 1 file:
slight cleanup on order of accuracy plot
8 lines of code changed in 1 file:
include run with 1600 grid points
0 lines of code changed in 2 files:
include runs with 1600 cells
0 lines of code changed in 6 files:
downshift to firstOrder advection
0 lines of code changed in 8 files:
Added a time verification procedure for the explicit time integrator. This is activated through a compiler directive. Some useful scripts to come to actually run the verification automagically...
142 lines of code changed in 5 files:
Create a builder just for documentation.
Specify the directory where SVN checks out the source.
35 lines of code changed in 1 file:
Reorganize some of the scripts for adding the TestSteps.
13 lines of code changed in 1 file:
Update the nightly tests to use the new AddTestStep function.
9 lines of code changed in 1 file:
Use new arguments for regression tester script.
Shorten the function to create BuildStepTests.
16 lines of code changed in 1 file:
Add make link_inputs to make.py.
Use consistent names for arguments, i.e. -m --> -mpm, -i --> -ice.
16 lines of code changed in 2 files:
Threw some crap against the wall, these changes seem to stick.
10 lines of code changed in 3 files:
Simply the addition of tests using a function.
52 lines of code changed in 1 file:
This should get the ImpMPM RT running again. Getting computes and requires
in place.
Also, deleting ZerilliArmstrongPlastic, which was apparently replaced by
ZAPlastic.
240 lines of code changed in 73 files:
Fixing some problems with 'requires' statements, and making initialization function error message more clear
15 lines of code changed in 4 files:
Remove builders that aren't used.
Use relative paths for commands.
35 lines of code changed in 1 file:
This should get the MPMF regression test running again.
6 lines of code changed in 2 files:
Use the helper script make.py for compiling.
11 lines of code changed in 1 file:
Don't specify the python interpreter.
0 lines of code changed in 1 file:
Helper script for buildbot compilation.
19 lines of code changed in 1 file:
Removing this check for length size. It doesn't work because the upper limit check is arbitrary.
5 lines of code changed in 1 file:
Changed the solver tolerance checking.
19 lines of code changed in 2 files:
Remove commented out lines.
0 lines of code changed in 1 file:
Use relative path for the configure line.
31 lines of code changed in 1 file:
More fixes to cmputes and requires. Still doesn't run.
1 lines of code changed in 1 file:
Add some computes. This gets past the errors kicked up by Justin's changes,
but now it is segfaulting.
3 lines of code changed in 1 file:
Added compute(pFiberDir,...) to scheduleInitialize.
1 lines of code changed in 1 file:
Trying to clean up fall out from Justin's recent commits.
28 lines of code changed in 4 files:
Add the UCF tests and append the test case you are running to the TestCase
directory name. Upon any failure of a test, the TestCase directory will
be tar gzipped.
31 lines of code changed in 1 file:
Only run the 32 bit debug compile and the optimize build and test if
the 64bit debug compile succeeds.
15 lines of code changed in 1 file:
Also comment out the requires so buildbot will stop yelling at us.
2 lines of code changed in 1 file:
Commented compute out until we can resolve the multiple computes issue.
1 lines of code changed in 1 file:
Fixed computes/requires for delT
19 lines of code changed in 7 files:
Added a missing compute.
1 lines of code changed in 1 file:
Added some missing computes/requries.
4 lines of code changed in 1 file:
Removed debug code.
1 lines of code changed in 1 file:
Fixed the delT computes and requires
21 lines of code changed in 8 files:
Fixed some requires issues.
2 lines of code changed in 1 file:
Fixing minor typo
1 lines of code changed in 1 file:
added ability to perform order of accuracy tests on the density, temperature, pressure
and velocity simultaneously. This is a rough draft and needs some polish.
144 lines of code changed in 6 files:
Turned on computes/requires checking.
2 lines of code changed in 1 file:
Changing some >/<'s to <=/>='s
9 lines of code changed in 1 file:
Added an exception to the requires checking for the copyDataToNew grid task because it runs outside of the normal schedule process.
7 lines of code changed in 1 file:
Details, details. _preReloc variables come from the NewDW, not the old.
1 lines of code changed in 1 file:
Crossing my fingers that this will resolve Justin's problem. Namely, change
the requires of pErosionLabel to pErosionLabel_preReloc.
1 lines of code changed in 1 file:
Readded missing requires.
1 lines of code changed in 1 file:
added tests 2 -> 4 from "Riemann Solvers and Numerical Methods for Fluid Dynamics"
They're commented out.
782 lines of code changed in 12 files:
A little clean-up and/or slight modifications of the previous commit (from Charles).
21 lines of code changed in 8 files:
More missing requires.
6 lines of code changed in 3 files:
Added some missing computes.
3 lines of code changed in 1 file:
Added missing require.
1 lines of code changed in 1 file:
added missing compute.
1 lines of code changed in 1 file:
getWhichDW() now takes a parameter to specify which running task is making the request. Previously it would assume the innermost task which means parent tasks would return the wrong dw.
24 lines of code changed in 2 files:
added test1 of Toro's book. This is currently commented out.
8 lines of code changed in 1 file:
Fixing some compiler warnings
20 lines of code changed in 2 files:
- Fixing initialization bugs in DQMOMEqn
- Adding uniform constant/step initialization functions to DQMOMEqn class
- Adding environment-specific constant/step initialization functions to DQMOMEqn class
- Fixing print statements in equation classes to use proc0cout instead of cout
- Fixing several indentation issues in equation classes
The following files had only minor/cosmetic changes:
* PartVel.cc
* ExplicitSolver.cc
* DQMOM.cc
* ExplicitTimeInt.h
* CoalGasMomentum.cc
* CoalGasDevol.cc
* Arches.cc
* ScalarEqn.h
* DQMOMEqn.h
The following files had major changes:
* ScalarEqn.cc
* DQMOMEqn.cc
* EqnBase.cc
986 lines of code changed in 14 files:
Fixed some more computes/requires errors.
12 lines of code changed in 4 files:
Added missing computes/requires.
3 lines of code changed in 2 files:
Make deletion of "rogue" particles a runtime option. There is still a hardwired
parameter that should probably be an option as well. Also, added the task
findRogueParticles so that this will work correctly in parallel. This task is
only scheduled if the run time option is set.
131 lines of code changed in 6 files:
Oops, forgot to include the .h file.
1 lines of code changed in 1 file:
Changed my mind, make heating due to artificial viscosity true by default.
3 lines of code changed in 1 file:
Make heating due to artificial viscosity optional, off by default.
16 lines of code changed in 2 files:
p_q is always computed (artifical viscosity) so it should always be scheduled.
4 lines of code changed in 1 file:
Comment out the code I added Friday until I make it a run time option.
2 lines of code changed in 1 file:
Fixing some indentation issues
Adding some helpful output to Arches class
106 lines of code changed in 4 files:
Added code to remove particles that have "gone rogue". Eventually, this will
be an input file option, with knobs.
58 lines of code changed in 1 file:
Added a mechanism for initializing the transported scalar variables, derived from EqnBase, to a function. Need to modify DQMOMeqn to use this as well.
111 lines of code changed in 5 files:
Adding pLocalizedMPMLabel so that SerialMPM can know about failed particles.
5 lines of code changed in 2 files:
Added an AllowNoShear option to ElasticPlastic. Other modifications to
attempt to make this model more robust as particles "localize". Removed
unneeded line of code from JCPlastic.cc
47 lines of code changed in 3 files:
Fixing some weird requires statements.
10 lines of code changed in 2 files:
More missing computes/requires
6 lines of code changed in 2 files:
Whoever added cellInformation to Arches forgot a couple of computes/requires......
36 lines of code changed in 10 files:
pre-allocate grid variables
Globals variables are slow, now passing numRegions and Regions into function arguments
Moved plotting code into separate functions
It now works with multiple regions, with a refinement ratio of 1 on each region.
226 lines of code changed in 1 file:
Fix some requires problems.
5 lines of code changed in 1 file:
treat put with a replace as a compute.
Remove delT exemption from computes/modifies/requires checking.
20 lines of code changed in 1 file:
Removed compute because it is scheduled in MPM::scheduleComputeStressTensor if artifical viscosity is set to on. Jim needs to look into the proper fix.
1 lines of code changed in 1 file:
Accidently was destroying a varlabel twice.
0 lines of code changed in 1 file:
Added some missing requires.
5 lines of code changed in 1 file:
Added some missing computes.
3 lines of code changed in 2 files:
Added missing require
1 lines of code changed in 1 file:
-added Regions Structure.
-added function positionToNode()
-Using postionToNode in findNodesAndWeights() & findNodesAndWeightGradients()
The time integration loop has variable dx incorportated, the initialization does not.
94 lines of code changed in 1 file:
Readded delt requires for ICE
11 lines of code changed in 1 file:
Fixed some faulty logic in the task graph that would incorrectly determine which dw was being used when using the W-cycle (this should not change the answers).
2 lines of code changed in 1 file:
Changing some cout's to proc0cout's to reduce amount of stuff being printed
12 lines of code changed in 1 file:
Resolving a naming conflict (& getting rid of a bug in DQMOMEqn initialization)
267 lines of code changed in 16 files:
Archive failing test cases.
3 lines of code changed in 1 file:
Update the delt logic in AMRSimulation controller to be consistant.
Components must compute and store delt on a per level basis. Right now the infastructure then uses the per-level delt to compute the global delt.
49 lines of code changed in 18 files:
More accurate heat transfer model
175 lines of code changed in 2 files:
added bulletproofing
- if a particle leaves the domain then warn the user and exit the time
integration loop.
0 lines of code changed in 2 files:
- fixed typo in problem_type strcmp
- consolidated problem dependent parameters into one area
- printing out timestep information for each timestep
- added bulletproofing
if a paricle leaves the domain then warn the user and
exit the time integration loop
- added problem_type, NN, PPC to the header in the output files
42 lines of code changed in 1 file:
Fix misspelling.
1 lines of code changed in 1 file:
more thrashing
- eliminated problem types 2 & 3
- problem types are now described with strings
(impulsiveBar, oscillator, colliidingBars)
- added bulletproofing
- preallocate particle and grid variables for speed
- Nuked G, K, dug
- variable name changes
mg -> massG
vg -> velG
sigp -> stressP
Fig -> intForceG
Feg -> extForceG
ag -> accl_G
vg_new -> vel_new_G
- added titles to the final plot
- now plotting tip deflection error vs time
- now writing particle data at final timestep to particleData.dat
- now writing grid data at final timestep to gridData.dat
133 lines of code changed in 1 file:
Remove the username and password for svn access.
0 lines of code changed in 1 file:
formatting,
- 2 space indentation
- spaces between +-/*
Variable name changes
volp -> volP
dvp -> dvelP
mp -> massP
vp -> velP
* this should not change the answers
209 lines of code changed in 1 file:
Add svn username and password to svnpolling and the various builders.
20 lines of code changed in 1 file:
added constLevelP handle
0 lines of code changed in 2 files:
Make ApproachContact syntactically more like its big brother, FrictionContact,
so it will be easier to identify the differences between the two.
40 lines of code changed in 1 file:
changed filenames. Matlab doesn't like numbers in the filenames.
330 lines of code changed in 2 files:
initial commit. This is just a copy of one_d_mpm_new.m
0 lines of code changed in 1 file:
Reverted change.
There is some ambiguity in the scheduling and computing of delT that needs to get hammered
out before this change can be committed.
8 lines of code changed in 1 file:
BIG BUG, pointed out by Justin.
- moved put(delt) outside the patch loop.
This potentially could change all of the multi-patch problem answers. If it doesn't, then I've
been living right.
11 lines of code changed in 1 file:
pulled a weed
0 lines of code changed in 4 files:
More work on riemann test
58 lines of code changed in 5 files:
added <otherFilesToCopy> tag
These files will be copied to the testing directory
0 lines of code changed in 2 files:
Updated task graph validation code.
Uncomment "#if 0" in hasGetAccess() and hasPutAccess() functions to enable checking.
113 lines of code changed in 2 files:
Fixing a few more std::runtime's to Uintah type errors
12 lines of code changed in 2 files:
Making errors more descriptive (changing from std_runtime to Uintah type error)
1 lines of code changed in 1 file:
initial commit for the riemann shock tube order of accuracy test
453 lines of code changed in 4 files:
bulletproofing when the comparison utility can't be found
0 lines of code changed in 2 files:
fixed debugging print statement
2 lines of code changed in 1 file:
Making changes in heat transfer model parameters
23 lines of code changed in 1 file:
Reverting accidentally committed changes.
3 lines of code changed in 1 file:
Removed left over allocateAndPut of NC_CCweights that should have been removed
when these computes were pushed up to SerialMPM. Thanks Justin and Qingyu for
pointing this out.
5 lines of code changed in 2 files:
- Fixing the constant source term model
- Changing Kobayashi Sarofim model to get weights and weighted abscissas from old_dw, not new_dw (I don't think this actually changes anything, as they should be the same value before the DQMOM linear solve)
- Various message/comment fixes (cosmetic, do not actually change anything)
75 lines of code changed in 3 files:
Remove getNumVelFields from SimulationState. This function is not used.
0 lines of code changed in 8 files:
Compiler warnings
1 lines of code changed in 3 files:
Add some requires for p.size based on errors Justin found. More to come.
2 lines of code changed in 1 file:
Fixing a few more incorrectly-named variables.
7 lines of code changed in 2 files:
Removing parts of Kobayashi Sarofim model that look for gas_temperature as a label. This model uses the gas temperature as the temperature, by default; if the user specifies a particle temperature internal coordinate, the model will use that instead.
17 lines of code changed in 2 files:
Using Ubhayakar values (more realistic)
5 lines of code changed in 1 file:
Fixing my own bug
1 lines of code changed in 1 file:
Fixing a small bug with d_radiation
3 lines of code changed in 1 file:
Explicitly set the values for the WhichDW enum instead of relying on the compiler to do the right thing...
0 lines of code changed in 2 files:
scheduleComputeLagrangianSpecificVolume()
- added missing requires for press_CC
5 lines of code changed in 1 file:
Add gravity to the output problem spec function.
4 lines of code changed in 1 file:
Fixing a few typos and reverting one change made in my last commit (radiation was accidentially turned off by default)
6 lines of code changed in 2 files:
Added a bit more information to LBOut
4 lines of code changed in 1 file: