Skip to content
Snippets Groups Projects
Commit 58270fcf authored by WAUTELET Philippe's avatar WAUTELET Philippe
Browse files

P. Wautelet 25/01/2021: bugfix: do not call Write_budget at the beginning of the simulation

parent 5da45a21
No related branches found
No related tags found
No related merge requests found
...@@ -76,6 +76,7 @@ END MODULE MODI_ENDSTEP_BUDGET ...@@ -76,6 +76,7 @@ END MODULE MODI_ENDSTEP_BUDGET
!! C.Lac 11/09/15 adaptation to FIT temporal scheme !! C.Lac 11/09/15 adaptation to FIT temporal scheme
! P. Wautelet: 05/2016-04/2018: new data structures and calls for I/O ! P. Wautelet: 05/2016-04/2018: new data structures and calls for I/O
! P. Wautelet 01-03/2020: use the new data structures and subroutines for budgets ! P. Wautelet 01-03/2020: use the new data structures and subroutines for budgets
! P. Wautelet 25/01/2021: bugfix: do not call Write_budget at the beginning of the simulation
!------------------------------------------------------------------------------- !-------------------------------------------------------------------------------
! !
!* 0. DECLARATIONS !* 0. DECLARATIONS
...@@ -104,15 +105,18 @@ integer :: jbu, jgrp ...@@ -104,15 +105,18 @@ integer :: jbu, jgrp
! !
call Print_msg( NVERB_DEBUG, 'BUD', 'Endstep_budget', 'called' ) call Print_msg( NVERB_DEBUG, 'BUD', 'Endstep_budget', 'called' )
!Do not call Write_budget at the beginning of the simulation (this is necessary in the case were xbulen = xtstep)
IF ( KTCOUNT == 1 ) RETURN
SELECT CASE(CBUTYPE) SELECT CASE(CBUTYPE)
! !
! !
!* 1. 'CART' CASE !* 1. 'CART' CASE
! ----------- ! -----------
! !
CASE('CART','SKIP') CASE('CART','SKIP')
! !
!* 1.1 storage of the budget fields !* 1.1 storage of the budget fields
! !
IF( MODULO(KTCOUNT,NBUSTEP*nbusubwrite) == 0 ) THEN IF( MODULO(KTCOUNT,NBUSTEP*nbusubwrite) == 0 ) THEN
call Write_budget( tpdiafile, tpdtcur, ptstep, ksv ) call Write_budget( tpdiafile, tpdtcur, ptstep, ksv )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment