2008-03-15 03:02:57 +05:30
|
|
|
|
|
|
|
!##############################################################
|
|
|
|
MODULE FEsolving
|
|
|
|
!##############################################################
|
|
|
|
|
2008-04-07 20:24:29 +05:30
|
|
|
use prec, only: pInt,pReal
|
2008-03-15 03:02:57 +05:30
|
|
|
implicit none
|
|
|
|
|
|
|
|
integer(pInt) cycleCounter
|
2008-04-07 20:24:29 +05:30
|
|
|
integer(pInt) theInc,theCycle,theLovl
|
|
|
|
real(pReal) theTime
|
|
|
|
logical :: lastIncConverged = .false.,outdatedByNewInc = .false.
|
2008-03-15 03:02:57 +05:30
|
|
|
|
|
|
|
END MODULE FEsolving
|