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

Refine check for allowable bcs versions to be run with CatchCN #882

Merged
merged 8 commits into from
Jan 26, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ subroutine process_cmd()
call getarg(nxt,arg)
end do
if (index(model, 'catchcn') /=0 ) then
if((INDEX(out_bcsdir, 'NL') == 0).AND.(INDEX(out_bcsdir, 'OutData') == 0)) then
if((INDEX(out_bcsdir, '/ICA/') /= 0) .or. (INDEX(out_bcsdir, '/GM4/') /= 0)) then
print *,'Land BCs in : ',trim(out_bcsdir)
print *,'do not support ',trim (model)
stop
Expand Down
Loading