Search found 4 matches

by choboter
Fri Nov 15, 2013 7:58 pm
Forum: Job Opportunities
Topic: Coastal Physical Oceanographer, Cal Poly San Luis Obispo
Replies: 0
Views: 4787

Coastal Physical Oceanographer, Cal Poly San Luis Obispo

Position Description

COASTAL PHYSICAL OCEANOGRAPHER TENURE TRACK POSITION. Full-time, academic year, tenure track in the Physics Department at California Polytechnic State University, San Luis Obispo, CA, beginning 9/15/14. Primary duties and responsibilities are to teach undergraduate physics and ...
by choboter
Wed Jun 24, 2009 10:24 pm
Forum: ROMS Bugs
Topic: Possible bug in get_2dfldr.F and get_3dfldr.F
Replies: 3
Views: 3157

Possible bug in get_2dfldr.F and get_3dfldr.F

This bug showed up while running the DOUBLE_GYRE test case on Linux with g95, and only when one of the compiler optimizations -O1, -O2, or -O3 were used. When -g option was on, and no optimizations, ROMS ran perfectly (albeit slowly). It's debatable whether this should be called a ROMS bug or a g95 ...
by choboter
Fri Jun 19, 2009 6:41 pm
Forum: ROMS Adjoint
Topic: A4DVAR_TOY
Replies: 4
Views: 5478

Re: A4DVAR_TOY

I've also been trying to get experience running the double_gyre test case, but it has not been a straightforward setup.

The input files of the double_gyre demo cannot be used with the latest revision of ROMS 3.2 (which one gets from "svn update") because the IS4DVAR input files have a new naming ...
by choboter
Wed Dec 28, 2005 9:45 pm
Forum: ROMS Information
Topic: gfortran on Mac
Replies: 5
Views: 6442

mod_strings on Mac

It works for me; I build gfortran from the gcc CVS repository. The problem with mod_strings.f90 is annoying enough that I use this nasty hack.

In makefile:

%.f90: %.F
$(CPP) $(CPPFLAGS) $< > $*.f90
sh fixStrings.sh $*.f90
$(CLEAN) $*.f90


Where fixString.sh contains this:


#!/bin/sh
if ...