2
I Use This!
Inactive

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
Sep 09, 2024 — Sep 09, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Move rhoH vs T functions into separate file so a change to scalar_advance doesn't require re-compiling the thermal stuff. More... almost 18 years ago
hopefully the last EOS renaming -- change *_row to *_eos in all of the external routines that call our EOS interface. Now, *_row is only used internal to the EOS module/helmeos. This change creates a clean separation between the names of the variables we use to call the EOS from a random subroutine and the names of the variables that are used within the EOS infrastructure to pass data around. More... almost 18 years ago
New improved scalar_diags routine. More... almost 18 years ago
Depend on rhoh_vs_t_module instead of scalar_advance_module. More... almost 18 years ago
Add rhoh_vs_t.f90 entry. More... almost 18 years ago
Move these functions into a separate file so changes to scalar_advance don't cause the thermal stuff to recompile. More... almost 18 years ago
Change default bottom solver from CG to BiCG. More... almost 18 years ago
Need to addw0 on the ghost cells as well. More... almost 18 years ago
xn_zone -> xn_row to be more consistent with the other names in the EOS module More... almost 18 years ago
removed the eps floor of 1.0 for the velpred = 1 case More... almost 18 years ago
echo SUCCESS if we build so the regression test picks it up. More... almost 18 years ago
xn_zone should be dimensioned as xn_zone(NP,nspec) instead of just xn_zone(nspec) to be consistent with the other EOS variables. This would allow you to call the EOS on a vector, although, we do not use that feature (i.e. NP = 1 is hardcoded in eos_stuff.f90) To make things consistent, change all the xn_zone(:) = ... to xn_zone(1,:) = ... More... almost 18 years ago
remove aion and zion from the argument lists for the EOS and instead always get these from the network module. More... almost 18 years ago
since divu_rhs is an optional input, put an if (present(divu_rhs)) then around the call to enforce_outflow_on_divu_rhs(divu_rhs,the_bc_tower) More... almost 18 years ago
These problems now run without needing to include varden in the makefiles. I copied the necessary files from varden into MAESTRO and edited the Makefiles. More... almost 18 years ago
this is rigged to work with evolve_base_state = F in 3D More... almost 18 years ago
made the w0 bounds checking in the same style as the 2d version More... almost 18 years ago
the 3d version of mkflux was grabbing a w0 from out of bounds More... almost 18 years ago
setting up the 3d version of this problem to work out 3d bugs in the alg. fixed bc's for 3d case in setbc.f90 More... almost 18 years ago
put_w0_on_3d_cells_cart was reaching out of the bounds of w0 More... almost 18 years ago
turned on the full algorithm. try it! More... almost 18 years ago
Important: in the second half of the algorithm, I make sure the temperature source terms are being computed with rho_omegadot2 from the beginning of the timestep. Before this checkin, it was computing the temperature sources with rho_omegadot2 from the end of the first half of the algorithm. I thought we fixed this before, but I guess not. More... almost 18 years ago
removed istep from argument list since it wasn't being used More... almost 18 years ago
the p0 terms now work. fixed some other minor bugs More... almost 18 years ago
I've checked and made sure the p0 contribution code is working properly so I uncommented it to re-enable. Also some minor comment fixing. More... almost 18 years ago
the code for adding the p0 contribution to grad T is in both of these files, but commented out in both of them. It wasn't working correctly when uncommented so I'm going to just turn it off until I fix it. More... almost 18 years ago
had to move put_base_state_on_multifab to thermal_conduct because otherwise the modules would reference each other since they both had utility subroutines required by the other More... almost 18 years ago
the grids used for put_base_state_on_multifab should be defined with phi instead of s, just to avoid confusion. no functional change. More... almost 18 years ago
Dont need t0 in react_state -- remove from calls to react state in advance and varden. More... almost 18 years ago
cleaned this function up so adding p0 terms will be easy. also added harmonic averaging for the 3d put_beta_on_faces More... almost 18 years ago