Skip to content
Snippets Groups Projects
Commit e9e7e362 authored by Evgeny Mortikov's avatar Evgeny Mortikov
Browse files

renaming initial and boundary conditions modules

parent 97d146c9
Branches
No related tags found
No related merge requests found
......@@ -25,8 +25,8 @@ set(SOURCES
obl_common_phys.f90
obl_math.f90
obl_state_eq.f90
obl_initial_conditions.f90
obl_boundary_conditions.f90
obl_init.f90
obl_bc.f90
obl_turb_closure.f90
obl_diag.f90
obl_k_epsilon.f90
......
......@@ -9,7 +9,7 @@ Oceanic boundary layer model including equations for temperature, salinity, and
gfortran:
gfortran -o obl obl_time_and_space.f90 io.f90 io_metadata.f90 obl_common_phys_parameters.f90 obl_mathematics.f90 obl_state_eq.f90 obl_initial_conditions.f90 obl_forcing_and_boundary.f90 obl_rhs.f90 obl_richardson.f90 obl_pacanowski_philander.f90 obl_pacanowski_philander_plus.f90 obl_k_epsilon.f90 obl_equation.f90 vermix_inmom.f90 obl_main.f90 -I/opt/homebrew/Cellar/netcdf-fortran/4.6.1_1/include -L/opt/homebrew/Cellar/netcdf-fortran/4.6.1_1/lib -lnetcdff
gfortran -o obl obl_time_and_space.f90 io.f90 io_metadata.f90 obl_common_phys_parameters.f90 obl_mathematics.f90 obl_state_eq.f90 obl_init.f90 obl_forcing_and_boundary.f90 obl_rhs.f90 obl_richardson.f90 obl_pacanowski_philander.f90 obl_pacanowski_philander_plus.f90 obl_k_epsilon.f90 obl_equation.f90 vermix_inmom.f90 obl_main.f90 -I/opt/homebrew/Cellar/netcdf-fortran/4.6.1_1/include -L/opt/homebrew/Cellar/netcdf-fortran/4.6.1_1/lib -lnetcdff
CMake:
module obl_boundary_conditions
module obl_bc
!< @brief boundary conditions module
! modules used
......
module obl_initial_conditions
module obl_init
!< @brief initial conditions module
! directives list
......
......@@ -4,7 +4,7 @@ module obl_k_epsilon
! modules used
use obl_math
use obl_grid
use obl_boundary_conditions
use obl_bc
use obl_turb_closure
! directives list
......
......@@ -16,10 +16,10 @@ program obl_main
use obl_tslice
use obl_tseries
use obl_output
use obl_initial_conditions
use obl_init
use obl_scm
use obl_diag
use obl_boundary_conditions
use obl_bc
use obl_pph
use obl_pph_dyn
use obl_k_epsilon
......
......@@ -3,7 +3,7 @@ module obl_pph
! modules used
use obl_grid
use obl_boundary_conditions
use obl_bc
use obl_turb_closure
! directives list
......
......@@ -3,7 +3,7 @@ module obl_pph_dyn
! modules used
use obl_grid
use obl_boundary_conditions
use obl_bc
use obl_diag
use obl_turb_closure
......
......@@ -5,7 +5,7 @@ module obl_scm
use obl_math
use obl_state
use obl_grid
use obl_boundary_conditions
use obl_bc
implicit none
private
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment