Bug in set_grid.F

Bug reports, work arounds and fixes

Moderators: arango, robertson

Post Reply
Message
Author
User avatar
fransUgent
Posts: 5
Joined: Thu Aug 29, 2019 1:32 pm
Location: University of Ghent

Bug in set_grid.F

#1 Unread post by fransUgent »

Good day,

I ran into a compiling error when defining #NESTING (after updating to rev 1031 this morning).

a CALL to nesting in set_grid.F:
line 112:
CALL nesting (ng, model, ndxdy)
cannot find ndxdy (no implicit type)

looking at:
#ifdef NESTING
USE nesting_mod, ONLY : nesting
seems to be the problem. I added
USE mod_nesting
to the above and it compiled (and is currently running).

Regards

Frans

User avatar
arango
Site Admin
Posts: 1347
Joined: Wed Feb 26, 2003 4:41 pm
Location: DMCS, Rutgers University
Contact:

Re: Bug in set_grid.F

#2 Unread post by arango »

Yes, thank you. It just need:

Code: Select all

#ifdef NESTING
      USE mod_nesting
#endif
Please, update.

Post Reply