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

clean up variable and subroutine names for Ldas grid #637

Merged
merged 13 commits into from
Mar 22, 2023
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ function eq_grid_def_type( grid_1, grid_2 )

type(grid_def_type), intent(in) :: grid_1, grid_2

if ( index(grid_1%gridtype,trim(grid_2%gridtype))>0 .and. &
if ( trim(grid_1%gridtype) == trim(grid_2%gridtype) .and. &
gmao-rreichle marked this conversation as resolved.
Show resolved Hide resolved
grid_1%ind_base == grid_2%ind_base .and. &
grid_1%i_dir == grid_2%i_dir .and. &
grid_1%j_dir == grid_2%j_dir .and. &
Expand Down