######################### SCHISM COMPONENTS # This is an example cache initialization file for choosing the SCHISM modules and algorithm settings # For purposes of clarity and re-usability, the configuration examples have been separated into # system locations and compilers (see SCHISM.local.system) and module/algorithm choices (e.g. USE_SED,TVD_LIM). # This file is an example of the latter. # In practice, you don't have to separate them. If you do, # cmake works fine with two init files: cmake -C -C ##################################################################### # # Algorithm choices # TVD_LIM must be one of SB, VL, MM or OS for Superbee, Van Leer, Minmod, or Osher.") set (TVD_LIM VL CACHE STRING "Flux limiter") #Turn OLDIO off to use the new scribe based I/O set (OLDIO OFF CACHE BOOLEAN "Old nc output (each rank dumps its own data)") set (PREC_EVAP OFF CACHE BOOLEAN "Include precipitation and evaporation calculation") set (USE_GOTM OFF CACHE BOOLEAN "Use GOTM turbulence model. This just enables the build -- GOTM must still be selected in param.nml") set (USE_HA OFF CACHE BOOLEAN "Enable harmonic analysis output modules") # Not implemented yet set( USE_MARSH OFF CACHE BOOLEAN "Use marsh module") # Enable/Disable Modules set( USE_SED2D OFF CACHE BOOLEAN "Use 2D sediment module") set( USE_WWM OFF CACHE BOOLEAN "Use wind-wave module") set( USE_ICE OFF CACHE BOOLEAN "Use ICE module") #Tracer models set( USE_GEN OFF CACHE BOOLEAN "Use generic tracer module") set( USE_AGE OFF CACHE BOOLEAN "Use age module") set( USE_ECO OFF CACHE BOOLEAN "Use ECO-SIM module") set( USE_ICM OFF CACHE BOOLEAN "Use ICM module") ##pH model is active only if ICM is on set( ICM_PH OFF CACHE BOOLEAN "Use pH module inside ICM") set( USE_COSINE OFF CACHE BOOLEAN "Use CoSiNE module") set( USE_FIB OFF CACHE BOOLEAN "Use fecal indicating bacteria module") set( USE_SED OFF CACHE BOOLEAN "Use sediment module") set( USE_FABM OFF CACHE BOOLEAN "FABM BGC model interface") set (DEBUG OFF CACHE BOOLEAN "Enable diagnostic output") set (USE_ANALYSIS OFF CACHE BOOLEAN "Enable (somewhat costly) derviation of derived flow/stress quantities")