Skip to content

Commit

Permalink
missed initializing radii before flux calcs
Browse files Browse the repository at this point in the history
  • Loading branch information
hsitaram committed Oct 8, 2024
1 parent ea86716 commit a294a49
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/MOL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,8 @@ pc_compute_hyp_mol_flux(
amrex::Real flux_tmp[NVAR] = {0.0};
amrex::Real ustar = 0.0;

amrex::Real radl, radr;
amrex::Real radl=0.0;
amrex::Real radr=0.0;
if (using_rotframe) {

radr =
Expand Down

0 comments on commit a294a49

Please sign in to comment.