Skip to content
Snippets Groups Projects
Commit 64ebe1a6 authored by Victor Stepanenko's avatar Victor Stepanenko
Browse files

Bugs fixed, revealed when using gfortran 9.3.0 compiler

parent e2ecdd3d
No related branches found
No related tags found
No related merge requests found
......@@ -72,6 +72,7 @@ N_LatentFlux -1
N_Ustar -1
N_surfrad -1
N_cloud -1
N_SurfTemp -1
#
#-----------------------------------------------------------------------------------------
# TIME INTEGRATION PARAMETERS
......
......@@ -25,6 +25,7 @@
opt_keys = -fopenmp -O3 #-fp-model source
#check_keys = -g -ffpe-trap=invalid,zero,overflow,denormal -fcheck=all -fbacktrace
#check_keys = -g -ffpe-trap=invalid,zero,overflow -fcheck=all -fbacktrace
#check_keys = -fbacktrace
endif
objfiles_path = ../objfiles/
......
......@@ -360,6 +360,7 @@ deallocate(work)
! Writing timestamp of the control point
filen = './results/control_point/cpdate.dat'
nunit = 1000
call CHECK_UNIT(1_iintegers,1000_iintegers,nunit)
open(unit=nunit,file=filen,status='unknown')
write(nunit,'(a)') 'The control point time stamp'
......
......@@ -388,8 +388,7 @@ implicit none
real(kind=ireals), allocatable :: terms(:), termsdt(:)
real(kind=ireals) :: storage, storage0, dstorage, resid
integer(kind=iintegers) :: nterms
!contains
procedure(intbal_update), pointer, pass :: intbal_update => INTBAL_UPDATE
procedure(intbal_update), pointer, nopass :: intbal_update => INTBAL_UPDATE
endtype intbal_type
contains
......
......@@ -25,8 +25,8 @@ font = {'family': 'serif',
rc('font', **font)
rc('text', usetex=True)
rc('text.latex',unicode=True)
rc('text.latex',preamble='\usepackage[utf8]{inputenc}')
rc('text.latex',preamble='\usepackage[russian]{babel}')
rc('text.latex',preamble=r"\usepackage[utf8]{inputenc}")
rc('text.latex',preamble=r"\usepackage[russian]{babel}")
#rc('text.latex',preamble='\usepackage{amsmath}')
......
......@@ -130,8 +130,8 @@ def plot_timeser(plotid,nvar,legendcommon) :
rc('font', **font)
rc('text', usetex=True)
rc('text.latex',unicode=True)
rc('text.latex',preamble='\usepackage[utf8]{inputenc}')
rc('text.latex',preamble='\usepackage[russian]{babel}')
rc('text.latex',preamble=r"\usepackage[utf8]{inputenc}")
rc('text.latex',preamble=r"\usepackage[russian]{babel}")
#rc('text.latex',preamble='\usepackage{amsmath}')
#Numbering of plot items
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment