Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bugfix for the lightning DA #1970

Merged
merged 2 commits into from
Jan 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion var/da/da_minimisation/da_get_var_diagnostics.inc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ subroutine da_get_var_diagnostics(it, iv, j)
integer :: num_stats_tot
integer :: i,k
real :: jo_radiance
real :: temp(79)
real :: temp(82)

if (trace_use) call da_trace_entry("da_get_var_diagnostics")

Expand Down
10 changes: 5 additions & 5 deletions var/da/da_statistics/da_analysis_stats.inc
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ use module_state_description, only : num_chem, PARAM_FIRST_SCALAR
'p i j ', &
'q i j'
case ( 1 )
write(unit=stats_unit, fmt='(8a/)') &
write(unit=stats_unit, fmt='(9a/)') &
' Lvl ', &
'u i j ', &
'v i j ', &
Expand Down Expand Up @@ -397,7 +397,7 @@ use module_state_description, only : num_chem, PARAM_FIRST_SCALAR
'p i j ', &
'q i j'
case ( 1 )
write(unit=stats_unit, fmt='(8a/)') &
write(unit=stats_unit, fmt='(9a/)') &
' Lvl ', &
'u i j ', &
'v i j ', &
Expand Down Expand Up @@ -1080,9 +1080,9 @@ use module_state_description, only : num_chem, PARAM_FIRST_SCALAR
qcim=qcim+qciv(k)
qsnm=qsnm+qsnv(k)
end if
if ( use_cv_w ) then
wm=wm+wv(k)
end if
if ( use_cv_w ) then
wm=wm+wv(k)
end if
end do !k loop
end if !rootproc

Expand Down