From 5764c4528e41d5e67c657aa8b42c4be71eca95fb Mon Sep 17 00:00:00 2001 From: apcraig Date: Thu, 16 May 2024 17:34:01 -0600 Subject: [PATCH] update documentation --- cicecore/shared/ice_domain_size.F90 | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/cicecore/shared/ice_domain_size.F90 b/cicecore/shared/ice_domain_size.F90 index 999a35f48..b0ac9b036 100644 --- a/cicecore/shared/ice_domain_size.F90 +++ b/cicecore/shared/ice_domain_size.F90 @@ -21,7 +21,7 @@ module ice_domain_size ! namelist integer (kind=int_kind), public :: & - max_blocks , & ! max number of blocks per processor + max_blocks , & ! number of blocks allocated per task block_size_x, & ! size of block in first horiz dimension block_size_y, & ! size of block in second horiz dimension nx_global , & ! i-axis size @@ -47,15 +47,6 @@ module ice_domain_size integer (kind=int_kind), public, parameter :: & max_nstrm = 5 ! max number of history output streams - !*** The model will inform the user of the correct - !*** values for the parameter below. A value higher than - !*** necessary will not cause the code to fail, but will - !*** allocate more memory than is necessary. A value that - !*** is too low will cause the code to exit. - !*** A good initial guess is found using - !*** max_blocks = (nx_global/block_size_x)*(ny_global/block_size_y)/ - !*** num_procs - !======================================================================= end module ice_domain_size