Skip to content

Commit

Permalink
reduced info level of adaptivity info from 12 to 7
Browse files Browse the repository at this point in the history
  • Loading branch information
RupertGladstone committed Nov 13, 2024
1 parent 03c0035 commit 797cae6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fem/src/ElmerSolver.F90
Original file line number Diff line number Diff line change
Expand Up @@ -3068,7 +3068,7 @@ SUBROUTINE ExecSimulation(TimeIntervals, CoupledMinIter, &

IF( .NOT. ASSOCIATED( Solver % Variable ) ) CYCLE
IF( .NOT. ASSOCIATED( Solver % Variable % Values ) ) CYCLE
CALL Info(Caller,'Allocating adaptive work space for: '//I2S(i),Level=12)
CALL Info(Caller,'Allocating adaptive work space for: '//I2S(i),Level=7)
j = SIZE( Solver % Variable % Values )
ALLOCATE( AdaptVars(i) % Var % Values( j ), STAT=AllocStat )
IF( AllocStat /= 0 ) CALL Fatal(Caller,'Allocation error AdaptVars Values')
Expand All @@ -3093,7 +3093,7 @@ SUBROUTINE ExecSimulation(TimeIntervals, CoupledMinIter, &
! If the next timestep will not get us home but the next one would
! then split the timestep equally into two parts.
IF( dt - CumTime - ddt > 1.0d-12 ) THEN
CALL Info(Caller,'Splitted timestep into two equal parts',Level=12)
CALL Info(Caller,'Splitted timestep into two equal parts',Level=7)
ddt = MIN( ddt, ( dt - CumTime ) / 2.0_dp )
END IF
END IF
Expand Down Expand Up @@ -3197,7 +3197,7 @@ SUBROUTINE ExecSimulation(TimeIntervals, CoupledMinIter, &
END IF

WRITE(Message,'(a,3e20.12)') 'Adaptive(cum,ddt,err): ', cumtime, ddt, maxerr
CALL Info(Caller,Message,Level=12)
CALL Info(Caller,Message,Level=7)

END DO
sSize(1) = dt
Expand Down

0 comments on commit 797cae6

Please sign in to comment.