http://fvcom.smast.umassd.edu/
To download the latest version of FVCOM:
git clone https://github.com/FVCOM-GitHub/FVCOM.git
To obtain an old version of FVCOM:
git clone --branch VERSION https://github.com/FVCOM-GitHub/FVCOM.git
where VERSION is the version number. All available verions can be found on https://github.com/FVCOM-GitHub/FVCOM/releases.
Compilers FVCOM codes are mainly written in Fortran 90 and C language. We recommend users to use
- ifort and icc. (https://www.intel.com/content/www/us/en/developer/tools/oneapi/overview.html)
- gfortran and gcc. (https://gcc.gnu.org/)
Required/Optional libraries
- NetCDF: to read input files and write output files in NetCDF format. Both NetCDF-C and NetCDF-Fortran are required. (https://www.unidata.ucar.edu/software/netcdf/)
- MPI: (optional) for parallel simulation with multiple cpus. Many options are freely available online, such as
- Metis: (optional) for serial graphic partition. (http://glaros.dtc.umn.edu/gkhome/metis/metis/overview)
- Julian: for calendar calculation. (https://pds-rings.seti.org/toolkits/)
- Proj4: used for coordinate conversion. (https://proj.org/)
- Fortran-proj4: bindings for proj4 in Fortran. (not available online.)
- PetSc: (optional) the toolkit of scientific computation. This library is required when using semi-implicit scheme, data assimilation, non-hydrostatic, or SWAVE module.(https://petsc.org/)
- ESMF: (optional) This library is required when online nesting or WRF-FVCOM coupling is applied.
- make depend
Generate the module dependencies of FVCOM codes. This step is required only when there are new codes added. - edit make.inc
The ‘make.inc’ file includes all the settings for compiling FVCOM. This file needs to be edited correctly based on users’ interest of simulation, before the FVCOM codes are compiled. Users need to edit three parts in this file, including library environments, control flags, and compiler settings. - make clean
When the ‘make.inc’ file is modified, this step is necessary to make the model compiled from the beginning with the modified settings. - make
Compile the FVCOM codes. You should see the executable file ‘fvcom’ when the compilation is successful. FVCOM can be compiled in a parallel mode, with the following command:
make -j N
where N is the integer number specifying the maximum number of cores used for compiling the FVCOM source codes. Based on the tests with Intel® Xeon® CPU E5-2640, the total time of compiling FVCOM is 120 s with one core. The time can be saved 40% with two cores and 54% with three cores. When more than three cores are applied, there is no large improvement on the compiling speed. The results could vary with different cpus and different flags selected. However, we recommend users compile FVCOM with 2 or 3 cores to save the compiling time.
- Step 1: make a folder ‘run’ and copy/link the executable file ‘fvcom’ to this folder.
- Step 2: prepare all required input files
- Step 3: create the namelist file with the name of CASENAME_run.nml. You can get a blank namelist file by
./fvcom –create_namelist - Step 4: run the model.
- To run FVCOM with single cpu
./fvcom –casename=CASENAME - To run FVCOM in the parallel way
mpiexec ./fvcom –casename=CASENAME
or
mpiexec ./fvcom –casename=CASENAME
where CASENAME is the name of simulation case and must be consistent with the prefix of the namelist file. For example, the namelist file is named as ‘gom_run.nml’, then CASENAME is ‘gom’.
- To run FVCOM with single cpu
We also provide a package of helping users to learn and run FVCOM, including benchmark test cases, offline models, necessary libraries, and processing tools. The package is available at:
https://drive.google.com/file/d/1xwcFjzkSNT26FBu83pq2I8oIGzPqnjUn/view