get_stochy_pattern.F90

1! This file is part of MOM6, the Modular Ocean Model version 6.
2! See the LICENSE file for licensing information.
3! SPDX-License-Identifier: Apache-2.0
4
5! The are stubs for ocean stochastic physics
6! the fully functional code is available at
7! http://github.com/noaa-psd/stochastic_physics
9
10implicit none ; private
11
13
14contains
15
16!> Write the restart file for the stochastic physics perturbations.
17subroutine write_stoch_restart_ocn(sfile)
18 character(len=*) :: sfile !< name of restart file
19
20 ! This stub function does not actually do anything.
21 return
22end subroutine write_stoch_restart_ocn
23