[Wrf-users] RE: Probelm with ungrib.exe on Mac OS X

Zulauf, Michael Michael.Zulauf at iberdrolausa.com
Tue Feb 3 12:23:38 MST 2009


Here's another fairly simple solution - just modify the makefile so it
works around the case insensitivity.

It might be slightly different for whatever version you're using, but
all I needed to do was modify the file:
	ungrib/src/ngl/g2/Makefile

Here are the results of a 'diff' command between the original and my
modified version:
% diff ungrib/src/ngl/g2/Makefile.orig ungrib/src/ngl/g2/Makefile
66,68c66,69
<       $(CPP) $(FDEFS) $*.F > $*.f
<       $(FC) -c $(F77FLAGS) $*.f
<       /bin/rm -f $*.f
---
>       $(CPP) $(FDEFS) $*.F > $*.tmp.f
>       $(FC) -c $(F77FLAGS) $*.tmp.f
>       /bin/mv $*.tmp.o $*.o
>       /bin/rm -f $*.tmp.f

Something like that should work for you.  In essence, rather than the
result of preprocessing a .F file to a .f (which would be the same
file), it gets preprocessed to a .tmp.f file.

A bit of a hack, but it worked for me.  I informed the WRF people last
summer - maybe they'll fix this themselves sometime. . .

Mike


-----Original Message-----
Date: Tue, 3 Feb 2009 09:29:17 +1100
From: <Chris.Thomas at ga.gov.au>
Subject: RE: [Wrf-users] RE: Probelm with ungrib.exe on Mac OS X
	[SEC=UNCLASSIFIED]
To: <wrf-users at ucar.edu>
Message-ID:
	<64596720D115484A9F1C2DC2D4CB0021597BD868EA at EXCCR01.agso.gov.au>
Content-Type: text/plain; charset="us-ascii"


If the problem that you have is related to the fact that the OS X file
system is case insensitive then there are at least two ways of getting
around this:

1. Partition your hard disk, and format one of the partitions (NOT the
one that will hold your system files) as Mac OS Extended (case
sensitive). This would require reinstalling your system and all
software.

2. Easier and works just as well:  Use Disk Utility to create a new
blank disk image, and then use Disk Utility to format the disk image as
Mac OS Extended (case sensitive) or Mac OS Extended (case
sensitive,journaled). This takes only a minute or so and does not
interfere with the rest of your system. Then install all your WRF
software on this disk image. The only disadvantage to this method over
method 1 is that when you restart your Mac you will have to open the
disk image file each time in order to mount the volume. However this is
a very minor irritation.

I have used both these methods to install WRF using both g95 and
portland compilers and they both work. Conversely, I could not get WRF
to compile without doing this.

Hope this helps

Chris



Please be advised that PPM Energy, Inc. has changed its name to Iberdrola Renewables, Inc. Please be advised that Scottish Power Holdings, Inc. has changed its name to Iberdrola 
Renewables Holdings, Inc.   Please be advised that PPM Energy Canada Ltd. has changed its name to Iberdrola Canada Energy Services.  

This message is intended for the exclusive attention of the address(es) indicated.  Any information contained herein is strictly confidential and privileged, especially as regards person data, 
which must not be disclosed.  If you are the intended recipient and have received it by mistake or learn about it in any other way, please notify us by return e-mail and delete this message from
 your computer system. Any unauthorized use, reproduction, alteration, filing or sending of this message and/or any attached files to third parties may lead to legal proceedings being taken. Any 
opinion expressed herein is solely that of the author(s) and does not necessarily represent the opinion of Iberdrola. The sender does not guarantee the integrity, speed or safety of this 
message, not accept responsibility for any possible damage arising from the interception, incorporation of virus or any other manipulation carried out by third parties.



More information about the Wrf-users mailing list