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

monin_obukhov tests: Avoid continuation lines containing only a comment #1603

Merged
merged 1 commit into from
Oct 24, 2024
Merged
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
15 changes: 4 additions & 11 deletions test_fms/monin_obukhov/test_monin_obukhov.F90
Original file line number Diff line number Diff line change
Expand Up @@ -125,17 +125,10 @@ program test_monin_obukhov
integer(ki), dimension(n_1d) :: del_m, del_t, del_q
end type

type(drag_input_t), parameter :: drag_input = drag_input_t() &
& !< Input arguments for mo_drag

type(stable_mix_input_t), parameter :: stable_mix_input = stable_mix_input_t() &
& !< Input arguments for stable_mix

type(diff_input_t), parameter :: diff_input = diff_input_t() &
& !< Input arguments for mo_diff

type(profile_input_t), parameter :: profile_input = profile_input_t() &
& !< Input arguments for mo_profile
type(drag_input_t), parameter :: drag_input = drag_input_t() !< Input arguments for mo_drag
type(stable_mix_input_t), parameter :: stable_mix_input = stable_mix_input_t() !< Input arguments for stable_mix
type(diff_input_t), parameter :: diff_input = diff_input_t() !< Input arguments for mo_diff
type(profile_input_t), parameter :: profile_input = profile_input_t() !< Input arguments for mo_profile

! Entries 1:n of the arrays below contain known answer keys. Entry n+1 contains
! the answers that we calculate. Represent answer data using integral arrays,
Expand Down
Loading