Bulletproofing:
The user must specify the matl index for single material variables. Right
now that is just press_CC.
14 lines of code changed in 2 files:
Added sfigure()
Now using sfigure() instead of figure(). Sfgure() prevents the window focus from being
stolen by matlab.
Wrapped the code that dumps out movie frames with the conditional
if(dumpFrames){
}
Unfortunately, the function getFrame() steals the window focus.
51 lines of code changed in 2 files:
Output the SVN revision number and the last change date in the output. This is different then the svn-status and svn-diff options when running sus in that it doesn't require calling svn and is always enabled.
5 lines of code changed in 1 file:
Small update to the svn_info
0 lines of code changed in 2 files:
Added a file which should be automatically updated every time code is commited to the repository. This file defines 2 variables SVN_REVISION and SVN_DATE.
6 lines of code changed in 1 file:
Rewrote adjustCFI_nodes to handle a variable number of input arguments
Calling adjustCFI_nodes after computing the internal force on the nodes
Added the functions ML_to_1D() and ML_Grid_to_1D(). These functions
convert multi-level arrays into 1D arrays that are sorted by position.
These are used for plotting.
- Now plotting extForceG
** Quasi-static compaction problem appears to be giving the right answers for
2 levels, refinement ratio of 2 on the finest level. More testing is needed.
142 lines of code changed in 1 file:
Cleaning up
0 lines of code changed in 1 file:
reverting a unwanted change
0 lines of code changed in 2 files:
Fixing a scaling problem with Optimize solver
25 lines of code changed in 3 files:
Added some error checking on the crack growth.
4 lines of code changed in 1 file:
Elminated EffStress & EffDevStress & DevStressNorm calculations.
Simplified the RK4 steps.
8 lines of code changed in 1 file:
Fixing an uninitialized variable
2 lines of code changed in 1 file:
Adding Optimize solver for DQMOM
268 lines of code changed in 2 files:
Readded sqrtopf it hasn't been applied to sigmae (which depends on DevStressNormSq and sigm_old, neither of which have been multiplied by that value).
1 lines of code changed in 1 file:
Variable name changes to reflect what is in the 2000 paper
K_I -> K_0
sif -> K_I
rko -> K_0m
skp -> KPrime
16 lines of code changed in 1 file:
Fixed linking for static build when using Zoltan.
1 lines of code changed in 1 file:
Remove an extra sqrtopf from sif. Replace One with Identity (as Todd and I are pretty sure it should be) and replace the current polarDecomposition with a
better algorithm, polarDecompositionRMB.
5 lines of code changed in 1 file:
Revert changes to cdot. It isn't clear which papers we need to use in the
crack radius calculations.
5 lines of code changed in 2 files:
Added some comments to point out which equations are being used where from the 2000 visco scram paper.
14 lines of code changed in 1 file:
Fix forumula based on Haberman, "Modeling, Simulation and Experimental
Verification of Constitutive Modesl for Energetic Materials" paper.
5 lines of code changed in 2 files:
Cleaning up
93 lines of code changed in 3 files:
Total internal energy version of ICE.
Added Lethuy's version of the face centered velocities
593 lines of code changed in 2 files:
added plotInterval. Plot results every N timesteps
5 lines of code changed in 2 files:
added section for the total energy BC
0 lines of code changed in 2 files:
proper formatting on the fprintf statement.
0 lines of code changed in 2 files:
postion figure so if doesn't land right between my two monitors
0 lines of code changed in 2 files:
added bulletproofing to catch when the the executable "exactRiemann" isn't found.
15 lines of code changed in 1 file:
gridFunctions.m
-mapNodeToCoarser()
now using a tolerance comparison instead of (a == b)
InitializationFunctions.m
-initialize_lx()
Removed hard coded values for the Lx values at the fine/coarse level CFIs.
Now computing them.
ML_AMRMPM.m
- reordered initialization steps
- updated compaction initialization
- added loop over levels around ExternalForceAccl()
ExternalForceAccl()
now returning bodyForce from function.
- changed E, bar_max & domain to start testing the quasi-compaction problem on
multiple levels.
60 lines of code changed in 3 files:
Currently setup to run the compaction problem with linear interpolation.
18 lines of code changed in 2 files:
gridFunctions.m
-added mapNodeToCoarser() -- function that returns the a coarse level node index
of a node with position X.
initializationFunctions.m
-added findCFI_nodes() -- function that determines the fine level CFI node indices and
the underlying coarse level node indicies.
- initialize_grid() - removed hard coded CFI node indicies.
ML_AMRMPM.m
- adjustCFI_nodes()
removed all the hard coding and replaced with more general code.
88 lines of code changed in 3 files:
shapeFunctions.m
-findNodesAndWeights_linear()
add & subtract fuzz (1e-15) to the shape functions whenever the particle is
coincidental with a node. If you don't then the simulation will go unstable.
initializationFunctions.m
- initialize_NodePos()
simplified algorithm to compute node positions
-initialize_Lx()
l -> left, r -> right
hard coded Lx values at the CFI.
-initialize_grid()
define dx for each level
compute the high and low node index for each patch
hard coded the CFI nodes for each level
ML_AMRMPM.m
- after interpolate particles to grid call adjustCFI_Nodes()
added adjustCFI_Nodes()
At the CFI nodes, q_new = q(Level1) + q(Level2) +....
q(allLevels) = q_new.
Currently the CFI node indicies are hard coded.
Currently able to advect a block of particles on a 2 level grid, rr = 2.
Linear shape functions.
After 80 timesteps the sum(positional error) = 2.131628E-14
148 lines of code changed in 3 files:
findNodesAndWeights()
- add & subtract fuzz (1e-15) to the shape functions weights when the node
is coincident with the node. If you don't then the solution will become unstable
when the particle crosses the next node.
25 lines of code changed in 1 file:
initialize_nodePos()
- simpler method for setting the node positions
15 lines of code changed in 1 file:
now using initialize_NodePos() & initialize_Lx()
Something is not right when Lx is not uniform
7 lines of code changed in 1 file:
nodePos()
- easier method for initializing the node positions
7 lines of code changed in 1 file:
ExternalForceAccl()
- initialize accl_extForceP to 0.0
plotResults()
- Merge changes from ML_AMRMPM:PlotResults
Changed from gimp2 -> Linear
User must input number of cells, not number of nodes.
Currently, configured to run
amrmpm('advectBlock',0.1,6)
However, the results are wrong!!!
30 lines of code changed in 1 file:
initialize as many variables as possible to NaN. This should catch
when a variable is being used inappropriately.
- Adjusting plotting routine to handle arrays with NaNs
fixed error calculation in the "advectBlock" section
50 lines of code changed in 2 files:
Fix compiler warnings.
2 lines of code changed in 1 file:
1) Fixing volq variable issue.
2) Setting local condition numbers to -1 when the condition number exceeds default/user criteria.
10 lines of code changed in 2 files:
Turning off buildbot dqmom tests until we can get the differences sorted out between blaze and buildbot.
1 lines of code changed in 1 file:
advectBlock Initialization
- initial position is just a single array.
computeDeformationGradient()
- declare vol & dF. You must declare the size of the arrays if they're not passed in.
ComputeStress(()
- must declare size of array.
relocateParticles()
- Look for gaps in the arrays and eliminate any gaps. A gap is a NaN followed by
a non-zero number.
Can now move particles from coarse Level -> Fine Level and vice versa.
62 lines of code changed in 1 file:
isOutsideLevel
using <= & >= as opposed to < & >
1 lines of code changed in 1 file:
Fixing request of variable Volq for mpmarches
15 lines of code changed in 4 files:
initialize_grid()
- Fixed bug in computing level extents
2 lines of code changed in 1 file:
Adding the drag force models
1890 lines of code changed in 6 files:
Adding a new particle velocity model based on drag force
321 lines of code changed in 6 files:
gridFunctions:
- added isOutsideLevel function
initializeFunctions:
- initialize_xp: xp is now shaped like all of the other particle arrays
xp = zeros(NP_max, maxLevels).
You need this for plotting.
ML_AMRMPM:
- only compute deformation gradient and stress if there are particles on that level.
- added particleRelocation function() -- still needs testing
- set x scale on all plots to be from level{1}.min to level{1}.max
85 lines of code changed in 3 files:
Thrashing:
-Added level loops around all major steps in the algorithm.
"Sit still" problem works on 2 levels, with refinement ratio = 2.
110 lines of code changed in 2 files:
Downshift: switched from GIMP to LINEAR. Not sure what to do on the finer level
at the coarse-fine interface.
Added level loops to
compute timestep,
interpolate, Particles to Grid
compute internal force
39 lines of code changed in 1 file:
Added 1 to P.NN on L-1, Patch 3 so you get the right number of nodes
1 lines of code changed in 1 file:
positionToNode()
- the right patch owns the left node at a patch-patch interface.
6 lines of code changed in 1 file:
Fixing computation of FSUM in Simpleheattransfer.cc
41 lines of code changed in 8 files:
initialize_grid()
Compute the extents of each level.
added NN_NP_allLevels(): function to compute sum NN and NP over all levels.
initialize vol, massP, lp, Fp for each level.
plotResults()
- draw vertical lines on each node position, different color for each level
Working up to the point of the main time integration loop.
108 lines of code changed in 2 files:
added file gridFunctions that contains common grid based functions
- hasFinerCell()
initializationFunction
- lay down particles only in the finest level cells in a multi-level grid.
Only the initialization phase is working.
93 lines of code changed in 3 files:
Setup 2 level problem. 3 patches on L1 and 1 patch on L2.
initialize_grid() is working
grid based variables (massG, velG, vel_nobc, accl_G, extForceG intForceG)
are level dependent.
72 lines of code changed in 2 files:
Cleaning house. These scripts have been moved to Matlab or Matlab/MultiLevel directories
0 lines of code changed in 5 files:
Adding dqmom tests.
1 lines of code changed in 1 file:
Adding radiative heat transfer and initial mass of ash for particles
52 lines of code changed in 2 files:
pulled weed.
updated README
0 lines of code changed in 3 files:
Changes so 2nd order matlab results replicate Uintah results for
src/orderAccuracy/test_config_files/ICE/riemann.ups
Relative differences between Uintah and matlab results:
press_eq: 4.075597986827590E-09
rho : 3.038079241858105E-09
xvel : 9.211514008445662E-10
press : 4.253314385461513E-09
temp : 9.110856525208955E-10
delP : 1.438163301673795E-08
vel_FC : 2.542638783260154E-09
after 400 timesteps.
109 lines of code changed in 16 files:
Updated to conform to new input files names.
7 lines of code changed in 1 file:
Take out the static variable and replace that with logic that should accomplish the same thing.
5 lines of code changed in 1 file:
increase the dx.y() & dx.z() so they are greater than dx.x()
Now saving
uvel_FCME & press_equil_CC
0 lines of code changed in 2 files:
Turn off 'no ups validation' warning spam when using multiple processors.
9 lines of code changed in 1 file: