2
I Use This!
Inactive

Commits : Listings

Analyzed about 23 hours ago. based on code collected about 23 hours ago.
Sep 10, 2024 — Sep 10, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
removed all unnecessary setval's on multifabs cleaned up loops over levels More... over 17 years ago
optimzied all remaining multifabs to only be allocated when needed More... over 17 years ago
making judicious calls to multifab_build and destroy for rhohalf, w0_cart_vec, w0_force_cart_vec, macrhs, macphi, and hgrhs_old to save memory. I am seeing a reduction in peak memory usage now, so I will optimize the rest of the multifabs in this file. More... over 17 years ago
moved all allocate statements to beginning of advance and deallocate statements to the end More... over 17 years ago
allocating/deallocating rho_Hext within advance, divu_iter, and initial_proj More... over 17 years ago
wrote get_rho_Hext, which calls get_rho_Hext_2d and _3d. This makes it easier to see where we are computing external heating (which for now happens at the beginning of react_state). Also, added a note about how the external heating is ignored in the initial projection. Including it makes test_convect unstable. More... over 17 years ago
in make_heating I replaced the old get_H function with a newly written get_rho_Hext. This allowed me to remove the allocated array "H" in react_state, which is now no longer needed. More... over 17 years ago
allocating/deallocating rho_omegadot1 within divu_iter, initial_proj, and advance More... over 17 years ago
rhohalf is being allocated/deallocated withing divu_iter and initial_proj. Also reduced it to one component instead of nscal components More... over 17 years ago
In order for restart to work for test_smallscale, subroutine read_base_state() in base_io.f90 must recompute the inlet boundary conditions since we do not store them in the checkpoint file. This involes only two calls to the eos at the beginning of a restart so it's probably not worth the effort to save the values of INLET_VN, INLET_VT, INLET_RHO, etc. in a checkpoint since it's so cheap to recompute. More... over 17 years ago
add to the list... More... over 17 years ago
locally allocating/deallocating thermal in divu_iter and initial_proj. removed unnecessary use statements in varden More... over 17 years ago
allocating/deallocating gamma1_term within advance, initial_proj, and divu_iter. More... over 17 years ago
added private/public lines to average, so now divu_iter and initial_proj need additional use statements More... over 17 years ago
appended the projection type parameters in proj_parameters.f90 with "_comp" to avoid confusion with similarly named subroutine, modules, and integers More... over 17 years ago
I moved all the initial projection stuff from varden into a new module. This makes varden easier to read and will help me reduce the amount of allocated memory. More... over 17 years ago
"implicit none" now appears exactly once in these files before the private/public statements More... over 17 years ago
s1 and s2 are now allocated/deallocated within divu_iter and advance More... over 17 years ago
I moved all the divu_iter stuff from varden into a new module. This makes varden easier to read and will help me reduce the amount of allocated memory. More... over 17 years ago
rennamed "gp" => "gpres" and "p" => "pres" to avoid confusion with "gphi" and "phi". Also, it is much easier to grep for gpres and pres instead of gp and p. The plotfiles still call these variables "gpx", etc, to avoid a regression failure More... over 17 years ago
allocate/deallocate uedge and utrans within advance.f90. replaced multifab_destroy() with simply destroy() More... over 17 years ago
allocating/deallocating umac within advance.f90 More... over 17 years ago
sflux now allocated/deallocated within scalar_advance More... over 17 years ago
allocating and deallocating sedge within scalar_advance to save memory More... over 17 years ago
use BiCG instead of CG More... over 17 years ago
added aveassoc stuff More... over 17 years ago
Replace i3 by i4 for larger grid sets. More... over 17 years ago
update the list of things to do More... over 17 years ago
now print out wallclock-based runtime on exit More... over 17 years ago
commented out some inner loop if tests More... over 17 years ago