Hi all I also have generate_ic.csh crash. I found at least one reason as follows:
generate_ic.csh calls regrid_3d, look at the source code of regrid_3d.F90 I found: if( trim(src_field_name) == trim(name)) then ... This condition will never come true (one name is upper case, the other being lower case), we need to change it to: if( lowercase(trim(src_field_name)) == lowercase(trim(name)) ) then ... This fixed the crash for me Giang Nong GFDL > Message: 1 > Date: Thu, 11 Jul 2002 19:19:48 -0400 (EDT) > From: <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: [Fms-mom4] Test3 > > Hi all, > 3. Scripts generate_ic.csh crashes > > Nick > > > > ******************************************************************* > Nick Tausnev > NASA Goddard Institute for Space Studies > 2880 Broadway, New York, NY 10025 > e-mail [EMAIL PROTECTED] > ph. + 1 212 678 5617 fax 1 212 678 5500 > ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ FMS-mom4 mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/fms-mom4
