Skip to content
Merged
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
6 changes: 5 additions & 1 deletion ice_model.F90
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ module ice_model_mod
area_berg =>NULL(), &
mass_berg =>NULL(), &
runoff_hflx =>NULL(), &
runoff_carbon =>NULL(), &
calving_hflx =>NULL(), &
area =>NULL(), &
flux_salt =>NULL()
Expand Down Expand Up @@ -229,8 +230,9 @@ module ice_model_mod

type :: land_ice_boundary_type
real, dimension(:,:), pointer :: runoff =>NULL(), &
calving =>NULL(), &
runoff_hflx =>NULL(), &
runoff_carbon =>NULL(), &
calving =>NULL(), &
calving_hflx =>NULL()
real, dimension(:,:,:), pointer :: data =>NULL()
integer :: xtype
Expand Down Expand Up @@ -550,6 +552,7 @@ subroutine ice_model_init( Ice, Time_Init, Time, Time_step_fast, Time_step_slow,
Ice%runoff (isc:iec, jsc:jec) , &
Ice%calving (isc:iec, jsc:jec) , &
Ice%runoff_hflx (isc:iec, jsc:jec) , &
Ice%runoff_carbon (isc:iec, jsc:jec) , &
Ice%calving_hflx(isc:iec, jsc:jec) , &
Ice%area (isc:iec, jsc:jec) , &
Ice%mi (isc:iec, jsc:jec) , &
Expand All @@ -574,6 +577,7 @@ subroutine ice_model_init( Ice, Time_Init, Time, Time_step_fast, Time_step_slow,
Ice%runoff = 0.0
Ice%calving = 0.0
Ice%runoff_hflx = 0.0
Ice%runoff_carbon = 0.0
Ice%calving_hflx = 0.0
Ice%area = 0.0
Ice%mi = 0.0
Expand Down