!+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ! ! glint_ebm.F90 - part of the Community Ice Sheet Model (CISM) ! !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ! ! Copyright (C) 2005-2014 ! CISM contributors - see AUTHORS file for list of contributors ! ! This file is part of CISM. ! ! CISM is free software: you can redistribute it and/or modify it ! under the terms of the Lesser GNU General Public License as published ! by the Free Software Foundation, either version 3 of the License, or ! (at your option) any later version. ! ! CISM is distributed in the hope that it will be useful, ! but WITHOUT ANY WARRANTY; without even the implied warranty of ! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! Lesser GNU General Public License for more details. ! ! You should have received a copy of the Lesser GNU General Public License ! along with CISM. If not, see . ! !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #ifdef HAVE_CONFIG_H #include "config.inc" #endif module glint_ebm ! This module provides a dummy, hopefully warning-free interface ! in place of an energy-balance model to compute the surface mass balance. ! If either subroutine is called, a fatal error is flagged. ! ! The old module name was 'glint_smb'. use glimmer_global, only: dp implicit none type ebm_params integer :: dummyint real(dp) :: dummyreal character(40) :: dummypath end type ebm_params contains subroutine EBMInitWrapper(params,nx,ny,dxr,tstep,path) use glimmer_log type(ebm_params) :: params integer :: nx,ny,dxr,tstep character(*) :: path ! Fatal error call write_log('Glimmer not compiled with EBM mass-balance scheme',GM_FATAL, & __FILE__,__LINE__) ! Need these lines to avoid warnings, though they are never executed params%dummyint=nx params%dummyint=ny params%dummyint=dxr params%dummyint=tstep params%dummypath=path end subroutine EBMInitWrapper !--------------------------------------------------------------------------------------------- subroutine EBMStepWrapper(params,temp,thck,artm,prcp,U10m,V10m,humidity,SWdown,LWdown,Psurf) use glimmer_log type(ebm_params) :: params real(dp),dimension(:,:) :: temp,thck,artm,prcp,U10m,V10m,humidity,SWdown,LWdown,Psurf ! Fatal error call write_log('Glimmer not compiled with EBM mass-balance scheme',GM_FATAL, & __FILE__,__LINE__) ! Need this line to avoid warnings, though it is never executed params%dummyreal = sum(temp+thck+artm+prcp+U10m+V10m+humidity+SWdown+LWdown+Psurf) end subroutine EBMStepWrapper end module glint_ebm