Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exp/MOM_compile.csh
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ else
exit 1
endif

if( $type == ACCESS-OM || $type == ACCESS-ESM) then
if( $type =~ ACCESS-* ) then
set srcList = ( $srcList access/shared )
endif

Expand Down
6 changes: 0 additions & 6 deletions src/access/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
# ACCESS-specific code

This directory includes code that is specific to ACCESS-models.

[ACCESS-specific generic tracers](https://github.com/ACCESS-NRI/GFDL-generic-tracers) are included as a git submodule. To retrieve the code for the submodule run:

```bash
git submodule update --init --recursive
```
1 change: 0 additions & 1 deletion src/access/generic_tracers
Submodule generic_tracers deleted from 6dcadb
9 changes: 9 additions & 0 deletions src/access/shared/gtracer_flux.F90
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,11 @@ subroutine flux_exchange_init (Time, Ocean, Ocean_state, Ice_ocean_boundary, atm
#if defined(ACCESS_CM)
allocate(Ice_ocean_boundary%co2(isc:iec,jsc:jec))
#endif
#if defined(ACCESS_OM) && defined(CSIRO_BGC)
allocate( &
Ice_ocean_boundary%iof_nit(isc:iec,jsc:jec), &
Ice_ocean_boundary%iof_alg(isc:iec,jsc:jec))
#endif

Ice_ocean_boundary%u_flux = 0.0
Ice_ocean_boundary%v_flux = 0.0
Expand All @@ -115,6 +120,10 @@ subroutine flux_exchange_init (Time, Ocean, Ocean_state, Ice_ocean_boundary, atm
#if defined(ACCESS_CM)
Ice_ocean_boundary%co2 = 0.0
#endif
#if defined(ACCESS_OM) && defined(CSIRO_BGC)
Ice_ocean_boundary%iof_nit = 0.0
Ice_ocean_boundary%iof_alg = 0.0
#endif

! Spawn 2D Ocean%fields FMS coupler type from 1D gas_fields_ocn
call coupler_type_spawn(gas_fields_ocn, Ocean%fields, (/isc,isc,iec,iec/), &
Expand Down