Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sfc_climo_gen - use scale parameter to read scaled datasets #958

Open
wants to merge 23 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
df89e12
Update ccpp-physics submodule.
sanatcumar Aug 17, 2023
d4cfcc0
Update ccpp-physics
sanatcumar Aug 17, 2023
df0788d
Merge remote-tracking branch 'upstream/develop' into develop
sanatcumar Sep 27, 2023
815ee4f
Merge with develop
sanatcumar Nov 14, 2023
4da0201
Merge remote-tracking branch 'upstream/develop' into develop
sanatcumar Nov 14, 2023
28e9ec0
Merge remote-tracking branch 'upstream/develop' into develop
sanatcumar Nov 27, 2023
09ec74a
Merge remote-tracking branch 'upstream/develop' into develop
sanatcumar Nov 28, 2023
d1d8929
Merge branch 'ufs-community:develop' into develop
sanatcumar Jun 3, 2024
2b2c303
use_scale push
sanatcumar Jun 3, 2024
6e203b4
changes to interep.F90
sanatcumar Jun 3, 2024
f16e80d
removed unnecessary declerations
sanatcumar Jun 3, 2024
a44ee4d
Fixed unnecessary logic
sanatcumar Jun 3, 2024
1117f4f
Removed commented statements
sanatcumar Jun 3, 2024
b6a2460
Removed prints/ commented statements and empty spaces
sanatcumar Jun 3, 2024
e2b4d0a
Added doxygen info
sanatcumar Jun 25, 2024
7789731
Doxygen udpates
sanatcumar Jun 25, 2024
6de1010
updated the fix links
sanatcumar Aug 21, 2024
da6fb4b
Merge branch 'ufs-community:develop' into use_scale
sanatcumar Aug 22, 2024
1401c52
addressing Orion memory out issues
Nov 5, 2024
c62fab0
Orion Memory issues
Nov 5, 2024
6c74f46
Merge branch 'ufs-community:develop' into use_scale
sanatcumar Nov 6, 2024
562ee6a
Includes codes to read in the new SAI data sets
sanatcumar Jan 10, 2025
0237062
Version that will can pass the link to the file from the driver.
sanatcumar Jan 15, 2025
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
Prev Previous commit
Next Next commit
Removed commented statements
  • Loading branch information
sanatcumar committed Jun 3, 2024

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit 1117f4f982eaa657338ef20801a98c6ffcee066c
2 changes: 0 additions & 2 deletions sorc/sfc_climo_gen.fd/interp.F90
Original file line number Diff line number Diff line change
@@ -226,7 +226,6 @@ subroutine interp(localpet, method, input_file)

print*,"- CALL FieldGather FOR MODEL GRID DATA."
call ESMF_FieldGather(data_field_mdl, data_mdl_one_tile, rootPet=0, tile=tile, rc=rc)
!call scale_data (data_mdl_one_tile, i_mdl, j_mdl, scale)
if(ESMF_logFoundError(rcToCheck=rc,msg=ESMF_LOGERR_PASSTHRU,line=__LINE__,file=__FILE__)) &
call error_handler("IN FieldGather.", rc)

@@ -251,7 +250,6 @@ subroutine interp(localpet, method, input_file)
if (.not. fract_vegsoil_type) then
select case (field_names(n))
case ('substrate_temperature','vegetation_greenness','leaf_area_index','slope_type','soil_type','soil_color')
!call scale_data (data_mdl_one_tile, i_mdl, j_mdl,scale)
call adjust_for_landice (data_mdl_one_tile, vegt_mdl_one_tile, i_mdl, j_mdl, field_names(n))
end select
endif
Loading