Skip to content

Commit 20af2d3

Browse files
sbryngelsonclaude
andcommitted
Fix k_v and k_g module-level variables not initialized to dflt_real
Every other bubble parameter follows the pattern of initializing both bub_pp%var and the module scalar, but k_v and k_g skip the module scalar initialization. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 84c46e0 commit 20af2d3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/simulation/m_global_parameters.fpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -700,8 +700,8 @@ contains
700700
bub_pp%gam_g = dflt_real; gam_g = dflt_real
701701
bub_pp%M_v = dflt_real; M_v = dflt_real
702702
bub_pp%M_g = dflt_real; M_g = dflt_real
703-
bub_pp%k_v = dflt_real;
704-
bub_pp%k_g = dflt_real;
703+
bub_pp%k_v = dflt_real; k_v = dflt_real
704+
bub_pp%k_g = dflt_real; k_g = dflt_real
705705
bub_pp%cp_v = dflt_real; cp_v = dflt_real
706706
bub_pp%cp_g = dflt_real; cp_g = dflt_real
707707
bub_pp%R_v = dflt_real; R_v = dflt_real

0 commit comments

Comments
 (0)