2015-06-03 23:00:31 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-03-12 16:06:18 +05:30
|
|
|
!> @author Martin Diehl, Max-Planck-Institut für Eisenforschung GmbH
|
2015-06-03 23:00:31 +05:30
|
|
|
!> @author Pratheek Shanthraj, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
!> @author Shaokang Zhang, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
!> @brief Spectral solver for thermal conduction
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-03-12 04:07:06 +05:30
|
|
|
module grid_thermal_spectral
|
2018-05-17 15:34:21 +05:30
|
|
|
#include <petsc/finclude/petscsnes.h>
|
|
|
|
#include <petsc/finclude/petscdmda.h>
|
2019-03-12 16:06:18 +05:30
|
|
|
use PETScdmda
|
|
|
|
use PETScsnes
|
2019-06-10 00:50:38 +05:30
|
|
|
|
|
|
|
use prec
|
2020-09-13 13:49:38 +05:30
|
|
|
use parallelization
|
2020-06-18 00:16:03 +05:30
|
|
|
use IO
|
2019-06-10 00:50:38 +05:30
|
|
|
use spectral_utilities
|
2020-03-20 11:28:55 +05:30
|
|
|
use discretization_grid
|
2019-06-10 00:50:38 +05:30
|
|
|
use thermal_conduction
|
2020-06-18 00:16:03 +05:30
|
|
|
use YAML_types
|
2020-08-15 19:32:10 +05:30
|
|
|
use config
|
2020-01-03 18:23:23 +05:30
|
|
|
use material
|
2019-03-12 16:06:18 +05:30
|
|
|
|
|
|
|
implicit none
|
|
|
|
private
|
2019-06-10 00:50:38 +05:30
|
|
|
|
2020-06-29 18:39:13 +05:30
|
|
|
type :: tNumerics
|
2020-06-29 20:35:11 +05:30
|
|
|
integer :: &
|
2020-09-19 11:50:29 +05:30
|
|
|
itmax !< maximum number of iterations
|
2020-06-24 20:09:09 +05:30
|
|
|
real(pReal) :: &
|
2020-09-19 11:50:29 +05:30
|
|
|
eps_thermal_atol, & !< absolute tolerance for thermal equilibrium
|
|
|
|
eps_thermal_rtol !< relative tolerance for thermal equilibrium
|
2020-06-24 20:09:09 +05:30
|
|
|
end type tNumerics
|
|
|
|
|
2020-06-29 18:39:13 +05:30
|
|
|
type(tNumerics) :: num
|
2020-06-24 20:09:09 +05:30
|
|
|
|
2020-09-19 11:50:29 +05:30
|
|
|
type(tSolutionParams) :: params
|
2015-06-03 23:00:31 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! PETSc data
|
2020-06-29 18:39:13 +05:30
|
|
|
SNES :: thermal_snes
|
|
|
|
Vec :: solution_vec
|
|
|
|
PetscInt :: xstart, xend, ystart, yend, zstart, zend
|
|
|
|
real(pReal), dimension(:,:,:), allocatable :: &
|
2020-01-31 03:37:45 +05:30
|
|
|
T_current, & !< field of current temperature
|
|
|
|
T_lastInc, & !< field of previous temperature
|
|
|
|
T_stagInc !< field of staggered temperature
|
2015-06-03 23:00:31 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! reference diffusion tensor, mobility etc.
|
2020-06-29 18:39:13 +05:30
|
|
|
integer :: totalIter = 0 !< total iteration in current increment
|
|
|
|
real(pReal), dimension(3,3) :: K_ref
|
|
|
|
real(pReal) :: mu_ref
|
2019-03-12 16:06:18 +05:30
|
|
|
|
|
|
|
public :: &
|
|
|
|
grid_thermal_spectral_init, &
|
|
|
|
grid_thermal_spectral_solution, &
|
|
|
|
grid_thermal_spectral_forward
|
2015-06-03 23:00:31 +05:30
|
|
|
|
|
|
|
contains
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-03-12 10:23:12 +05:30
|
|
|
!> @brief allocates all neccessary fields and fills them with data
|
|
|
|
! ToDo: Restart not implemented
|
2015-06-03 23:00:31 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-03-12 04:07:06 +05:30
|
|
|
subroutine grid_thermal_spectral_init
|
2019-03-09 14:24:33 +05:30
|
|
|
|
2020-01-12 05:19:03 +05:30
|
|
|
PetscInt, dimension(0:worldsize-1) :: localK
|
2019-03-09 14:24:33 +05:30
|
|
|
integer :: i, j, k, cell
|
|
|
|
DM :: thermal_grid
|
2019-03-12 04:07:06 +05:30
|
|
|
PetscScalar, dimension(:,:,:), pointer :: x_scal
|
2019-03-09 14:24:33 +05:30
|
|
|
PetscErrorCode :: ierr
|
2020-06-18 02:30:03 +05:30
|
|
|
class(tNode), pointer :: &
|
2020-06-19 06:02:33 +05:30
|
|
|
num_grid
|
2015-06-03 23:00:31 +05:30
|
|
|
|
2020-09-19 11:50:29 +05:30
|
|
|
print'(/,a)', ' <<<+- grid_thermal_spectral init -+>>>'
|
2019-03-09 15:32:12 +05:30
|
|
|
|
2020-09-19 11:50:29 +05:30
|
|
|
print*, 'Shanthraj et al., Handbook of Mechanics of Materials, 2019'
|
|
|
|
print*, 'https://doi.org/10.1007/978-981-10-6855-3_80'
|
2019-03-12 04:07:06 +05:30
|
|
|
|
2020-06-18 02:30:03 +05:30
|
|
|
!-------------------------------------------------------------------------------------------------
|
2020-09-19 11:50:29 +05:30
|
|
|
! read numerical parameters and do sanity checks
|
2020-09-13 14:09:17 +05:30
|
|
|
num_grid => config_numerics%get('grid',defaultVal=emptyDict)
|
2020-06-29 20:35:11 +05:30
|
|
|
num%itmax = num_grid%get_asInt ('itmax', defaultVal=250)
|
2020-06-24 20:09:09 +05:30
|
|
|
num%eps_thermal_atol = num_grid%get_asFloat ('eps_thermal_atol',defaultVal=1.0e-2_pReal)
|
|
|
|
num%eps_thermal_rtol = num_grid%get_asFloat ('eps_thermal_rtol',defaultVal=1.0e-6_pReal)
|
2020-06-24 20:39:15 +05:30
|
|
|
|
2020-06-29 20:35:11 +05:30
|
|
|
if (num%itmax <= 1) call IO_error(301,ext_msg='itmax')
|
2020-06-24 20:39:15 +05:30
|
|
|
if (num%eps_thermal_atol <= 0.0_pReal) call IO_error(301,ext_msg='eps_thermal_atol')
|
|
|
|
if (num%eps_thermal_rtol <= 0.0_pReal) call IO_error(301,ext_msg='eps_thermal_rtol')
|
|
|
|
|
2019-03-12 04:07:06 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! set default and user defined options for PETSc
|
2020-11-11 16:17:23 +05:30
|
|
|
call PetscOptionsInsertString(PETSC_NULL_OPTIONS,'-thermal_snes_type ngmres',ierr)
|
2019-03-12 04:07:06 +05:30
|
|
|
CHKERRQ(ierr)
|
2020-11-11 16:17:23 +05:30
|
|
|
call PetscOptionsInsertString(PETSC_NULL_OPTIONS,num_grid%get_asString('petsc_options',defaultVal=''),ierr)
|
2019-03-12 04:07:06 +05:30
|
|
|
CHKERRQ(ierr)
|
2015-06-03 23:00:31 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! initialize solver specific parts of PETSc
|
2019-03-09 14:24:33 +05:30
|
|
|
call SNESCreate(PETSC_COMM_WORLD,thermal_snes,ierr); CHKERRQ(ierr)
|
|
|
|
call SNESSetOptionsPrefix(thermal_snes,'thermal_',ierr);CHKERRQ(ierr)
|
2020-01-12 05:19:03 +05:30
|
|
|
localK = 0
|
|
|
|
localK(worldrank) = grid3
|
2019-03-09 14:24:33 +05:30
|
|
|
call MPI_Allreduce(MPI_IN_PLACE,localK,worldsize,MPI_INTEGER,MPI_SUM,PETSC_COMM_WORLD,ierr)
|
|
|
|
call DMDACreate3D(PETSC_COMM_WORLD, &
|
|
|
|
DM_BOUNDARY_NONE, DM_BOUNDARY_NONE, DM_BOUNDARY_NONE, & ! cut off stencil at boundary
|
|
|
|
DMDA_STENCIL_BOX, & ! Moore (26) neighborhood around central point
|
|
|
|
grid(1),grid(2),grid(3), & ! global grid
|
|
|
|
1, 1, worldsize, &
|
2020-09-19 11:50:29 +05:30
|
|
|
1, 0, & ! #dof (T field), ghost boundary width (domain overlap)
|
2019-03-12 16:06:18 +05:30
|
|
|
[grid(1)],[grid(2)],localK, & ! local grid
|
|
|
|
thermal_grid,ierr) ! handle, error
|
2019-03-09 14:24:33 +05:30
|
|
|
CHKERRQ(ierr)
|
|
|
|
call SNESSetDM(thermal_snes,thermal_grid,ierr); CHKERRQ(ierr) ! connect snes to da
|
|
|
|
call DMsetFromOptions(thermal_grid,ierr); CHKERRQ(ierr)
|
|
|
|
call DMsetUp(thermal_grid,ierr); CHKERRQ(ierr)
|
2019-03-12 04:07:06 +05:30
|
|
|
call DMCreateGlobalVector(thermal_grid,solution_vec,ierr); CHKERRQ(ierr) ! global solution vector (grid x 1, i.e. every def grad tensor)
|
2019-03-12 10:23:12 +05:30
|
|
|
call DMDASNESSetFunctionLocal(thermal_grid,INSERT_VALUES,formResidual,PETSC_NULL_SNES,ierr) ! residual vector of same shape as solution vector
|
2019-03-09 14:24:33 +05:30
|
|
|
CHKERRQ(ierr)
|
|
|
|
call SNESSetFromOptions(thermal_snes,ierr); CHKERRQ(ierr) ! pull it all together with additional CLI arguments
|
2015-06-03 23:00:31 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! init fields
|
2019-03-09 14:24:33 +05:30
|
|
|
call DMDAGetCorners(thermal_grid,xstart,ystart,zstart,xend,yend,zend,ierr)
|
|
|
|
CHKERRQ(ierr)
|
|
|
|
xend = xstart + xend - 1
|
|
|
|
yend = ystart + yend - 1
|
|
|
|
zend = zstart + zend - 1
|
2020-01-31 03:37:45 +05:30
|
|
|
allocate(T_current(grid(1),grid(2),grid3), source=0.0_pReal)
|
|
|
|
allocate(T_lastInc(grid(1),grid(2),grid3), source=0.0_pReal)
|
|
|
|
allocate(T_stagInc(grid(1),grid(2),grid3), source=0.0_pReal)
|
2019-03-09 14:24:33 +05:30
|
|
|
cell = 0
|
2019-03-12 16:06:18 +05:30
|
|
|
do k = 1, grid3; do j = 1, grid(2); do i = 1,grid(1)
|
2019-03-09 14:24:33 +05:30
|
|
|
cell = cell + 1
|
2020-12-15 22:15:11 +05:30
|
|
|
T_current(i,j,k) = temperature(material_homogenizationAt(cell))%p(material_homogenizationMemberAt(1,cell))
|
2020-01-31 03:37:45 +05:30
|
|
|
T_lastInc(i,j,k) = T_current(i,j,k)
|
|
|
|
T_stagInc(i,j,k) = T_current(i,j,k)
|
2019-03-09 14:24:33 +05:30
|
|
|
enddo; enddo; enddo
|
2019-03-12 04:07:06 +05:30
|
|
|
call DMDAVecGetArrayF90(thermal_grid,solution_vec,x_scal,ierr); CHKERRQ(ierr) !< get the data out of PETSc to work with
|
2020-01-31 03:37:45 +05:30
|
|
|
x_scal(xstart:xend,ystart:yend,zstart:zend) = T_current
|
2019-03-12 04:07:06 +05:30
|
|
|
call DMDAVecRestoreArrayF90(thermal_grid,solution_vec,x_scal,ierr); CHKERRQ(ierr)
|
2015-06-03 23:00:31 +05:30
|
|
|
|
2020-01-31 03:37:45 +05:30
|
|
|
call updateReference
|
2015-06-03 23:00:31 +05:30
|
|
|
|
2019-03-12 04:07:06 +05:30
|
|
|
end subroutine grid_thermal_spectral_init
|
2019-03-12 16:06:18 +05:30
|
|
|
|
2015-06-03 23:00:31 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2016-06-27 21:20:43 +05:30
|
|
|
!> @brief solution for the spectral thermal scheme with internal iterations
|
2015-06-03 23:00:31 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-09-25 18:49:31 +05:30
|
|
|
function grid_thermal_spectral_solution(timeinc) result(solution)
|
2019-03-09 14:24:33 +05:30
|
|
|
|
|
|
|
real(pReal), intent(in) :: &
|
2020-09-25 18:49:31 +05:30
|
|
|
timeinc !< increment in time for current solution
|
2020-06-29 20:35:11 +05:30
|
|
|
integer :: i, j, k, cell
|
2019-03-12 04:07:06 +05:30
|
|
|
type(tSolutionState) :: solution
|
2020-01-31 03:37:45 +05:30
|
|
|
PetscInt :: devNull
|
|
|
|
PetscReal :: T_min, T_max, stagNorm, solnNorm
|
2016-06-27 21:20:43 +05:30
|
|
|
|
2019-03-09 14:24:33 +05:30
|
|
|
PetscErrorCode :: ierr
|
|
|
|
SNESConvergedReason :: reason
|
2016-06-27 21:20:43 +05:30
|
|
|
|
2019-03-12 04:07:06 +05:30
|
|
|
solution%converged =.false.
|
2015-06-03 23:00:31 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! set module wide availabe data
|
2019-03-09 14:24:33 +05:30
|
|
|
params%timeinc = timeinc
|
2015-06-03 23:00:31 +05:30
|
|
|
|
2019-03-12 04:07:06 +05:30
|
|
|
call SNESSolve(thermal_snes,PETSC_NULL_VEC,solution_vec,ierr); CHKERRQ(ierr)
|
2019-03-09 14:24:33 +05:30
|
|
|
call SNESGetConvergedReason(thermal_snes,reason,ierr); CHKERRQ(ierr)
|
2015-06-03 23:00:31 +05:30
|
|
|
|
2019-03-09 14:24:33 +05:30
|
|
|
if (reason < 1) then
|
2019-03-12 04:07:06 +05:30
|
|
|
solution%converged = .false.
|
2020-06-29 20:35:11 +05:30
|
|
|
solution%iterationsNeeded = num%itmax
|
2019-03-09 14:24:33 +05:30
|
|
|
else
|
2019-03-12 04:07:06 +05:30
|
|
|
solution%converged = .true.
|
|
|
|
solution%iterationsNeeded = totalIter
|
2019-03-09 14:24:33 +05:30
|
|
|
endif
|
2020-01-31 03:37:45 +05:30
|
|
|
stagNorm = maxval(abs(T_current - T_stagInc))
|
|
|
|
solnNorm = maxval(abs(T_current))
|
2019-03-09 14:24:33 +05:30
|
|
|
call MPI_Allreduce(MPI_IN_PLACE,stagNorm,1,MPI_DOUBLE,MPI_MAX,PETSC_COMM_WORLD,ierr)
|
|
|
|
call MPI_Allreduce(MPI_IN_PLACE,solnNorm,1,MPI_DOUBLE,MPI_MAX,PETSC_COMM_WORLD,ierr)
|
2020-01-31 03:37:45 +05:30
|
|
|
T_stagInc = T_current
|
2020-06-24 20:09:09 +05:30
|
|
|
solution%stagConverged = stagNorm < max(num%eps_thermal_atol, num%eps_thermal_rtol*solnNorm)
|
2015-06-03 23:00:31 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! updating thermal state
|
2019-03-09 14:24:33 +05:30
|
|
|
cell = 0
|
|
|
|
do k = 1, grid3; do j = 1, grid(2); do i = 1,grid(1)
|
|
|
|
cell = cell + 1
|
2020-01-31 03:37:45 +05:30
|
|
|
call thermal_conduction_putTemperatureAndItsRate(T_current(i,j,k), &
|
|
|
|
(T_current(i,j,k)-T_lastInc(i,j,k))/params%timeinc, &
|
2019-03-09 14:24:33 +05:30
|
|
|
1,cell)
|
|
|
|
enddo; enddo; enddo
|
2015-06-03 23:00:31 +05:30
|
|
|
|
2020-01-31 03:37:45 +05:30
|
|
|
call VecMin(solution_vec,devNull,T_min,ierr); CHKERRQ(ierr)
|
|
|
|
call VecMax(solution_vec,devNull,T_max,ierr); CHKERRQ(ierr)
|
2019-03-12 04:07:06 +05:30
|
|
|
if (solution%converged) &
|
2020-09-19 11:50:29 +05:30
|
|
|
print'(/,a)', ' ... thermal conduction converged ..................................'
|
2020-12-15 03:07:14 +05:30
|
|
|
print'(/,a,f8.4,2x,f8.4,2x,f8.4)', ' Minimum|Maximum|Delta Temperature / K = ', T_min, T_max, stagNorm
|
2020-09-19 11:50:29 +05:30
|
|
|
print'(/,a)', ' ==========================================================================='
|
2020-09-22 16:39:12 +05:30
|
|
|
flush(IO_STDOUT)
|
2015-06-03 23:00:31 +05:30
|
|
|
|
2019-03-12 04:07:06 +05:30
|
|
|
end function grid_thermal_spectral_solution
|
2015-06-03 23:00:31 +05:30
|
|
|
|
|
|
|
|
2019-03-12 10:23:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief forwarding routine
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-10-30 03:54:12 +05:30
|
|
|
subroutine grid_thermal_spectral_forward(cutBack)
|
2019-06-10 00:50:38 +05:30
|
|
|
|
2019-10-30 03:54:12 +05:30
|
|
|
logical, intent(in) :: cutBack
|
2019-03-12 16:06:18 +05:30
|
|
|
integer :: i, j, k, cell
|
|
|
|
DM :: dm_local
|
|
|
|
PetscScalar, dimension(:,:,:), pointer :: x_scal
|
|
|
|
PetscErrorCode :: ierr
|
|
|
|
|
|
|
|
if (cutBack) then
|
2020-01-31 03:37:45 +05:30
|
|
|
T_current = T_lastInc
|
|
|
|
T_stagInc = T_lastInc
|
2019-03-12 10:23:12 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! reverting thermal field state
|
2019-03-12 16:06:18 +05:30
|
|
|
cell = 0
|
|
|
|
call SNESGetDM(thermal_snes,dm_local,ierr); CHKERRQ(ierr)
|
|
|
|
call DMDAVecGetArrayF90(dm_local,solution_vec,x_scal,ierr); CHKERRQ(ierr) !< get the data out of PETSc to work with
|
2020-01-31 03:37:45 +05:30
|
|
|
x_scal(xstart:xend,ystart:yend,zstart:zend) = T_current
|
2019-03-12 16:06:18 +05:30
|
|
|
call DMDAVecRestoreArrayF90(dm_local,solution_vec,x_scal,ierr); CHKERRQ(ierr)
|
|
|
|
do k = 1, grid3; do j = 1, grid(2); do i = 1,grid(1)
|
|
|
|
cell = cell + 1
|
2020-01-31 03:37:45 +05:30
|
|
|
call thermal_conduction_putTemperatureAndItsRate(T_current(i,j,k), &
|
|
|
|
(T_current(i,j,k) - &
|
|
|
|
T_lastInc(i,j,k))/params%timeinc, &
|
2019-03-12 16:06:18 +05:30
|
|
|
1,cell)
|
|
|
|
enddo; enddo; enddo
|
|
|
|
else
|
2020-01-31 03:37:45 +05:30
|
|
|
T_lastInc = T_current
|
|
|
|
call updateReference
|
2019-03-12 16:06:18 +05:30
|
|
|
endif
|
2019-03-12 10:23:12 +05:30
|
|
|
|
|
|
|
end subroutine grid_thermal_spectral_forward
|
|
|
|
|
|
|
|
|
2015-06-03 23:00:31 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief forms the spectral thermal residual vector
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-03-12 10:23:12 +05:30
|
|
|
subroutine formResidual(in,x_scal,f_scal,dummy,ierr)
|
2019-03-12 16:06:18 +05:30
|
|
|
|
|
|
|
DMDALocalInfo, dimension(DMDA_LOCAL_INFO_SIZE) :: &
|
|
|
|
in
|
|
|
|
PetscScalar, dimension( &
|
|
|
|
XG_RANGE,YG_RANGE,ZG_RANGE), intent(in) :: &
|
|
|
|
x_scal
|
|
|
|
PetscScalar, dimension( &
|
|
|
|
X_RANGE,Y_RANGE,Z_RANGE), intent(out) :: &
|
|
|
|
f_scal
|
|
|
|
PetscObject :: dummy
|
|
|
|
PetscErrorCode :: ierr
|
|
|
|
integer :: i, j, k, cell
|
|
|
|
real(pReal) :: Tdot, dTdot_dT
|
2015-06-03 23:00:31 +05:30
|
|
|
|
2020-01-31 03:37:45 +05:30
|
|
|
T_current = x_scal
|
2015-06-03 23:00:31 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! evaluate polarization field
|
2019-03-12 16:06:18 +05:30
|
|
|
scalarField_real = 0.0_pReal
|
2020-01-31 03:37:45 +05:30
|
|
|
scalarField_real(1:grid(1),1:grid(2),1:grid3) = T_current
|
2019-03-12 16:06:18 +05:30
|
|
|
call utilities_FFTscalarForward
|
2020-01-31 03:37:45 +05:30
|
|
|
call utilities_fourierScalarGradient !< calculate gradient of temperature field
|
2019-03-12 16:06:18 +05:30
|
|
|
call utilities_FFTvectorBackward
|
|
|
|
cell = 0
|
|
|
|
do k = 1, grid3; do j = 1, grid(2); do i = 1,grid(1)
|
|
|
|
cell = cell + 1
|
2020-02-29 17:27:19 +05:30
|
|
|
vectorField_real(1:3,i,j,k) = matmul(thermal_conduction_getConductivity(1,cell) - K_ref, &
|
|
|
|
vectorField_real(1:3,i,j,k))
|
2019-03-12 16:06:18 +05:30
|
|
|
enddo; enddo; enddo
|
|
|
|
call utilities_FFTvectorForward
|
2020-01-31 03:37:45 +05:30
|
|
|
call utilities_fourierVectorDivergence !< calculate temperature divergence in fourier field
|
2019-03-12 16:06:18 +05:30
|
|
|
call utilities_FFTscalarBackward
|
|
|
|
cell = 0
|
|
|
|
do k = 1, grid3; do j = 1, grid(2); do i = 1,grid(1)
|
|
|
|
cell = cell + 1
|
2020-01-31 03:37:45 +05:30
|
|
|
call thermal_conduction_getSourceAndItsTangent(Tdot, dTdot_dT, T_current(i,j,k), 1, cell)
|
|
|
|
scalarField_real(i,j,k) = params%timeinc*(scalarField_real(i,j,k) + Tdot) &
|
|
|
|
+ thermal_conduction_getMassDensity (1,cell)* &
|
|
|
|
thermal_conduction_getSpecificHeat(1,cell)*(T_lastInc(i,j,k) - &
|
|
|
|
T_current(i,j,k))&
|
|
|
|
+ mu_ref*T_current(i,j,k)
|
2019-03-12 16:06:18 +05:30
|
|
|
enddo; enddo; enddo
|
2015-06-03 23:00:31 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-01-31 03:37:45 +05:30
|
|
|
! convolution of temperature field with green operator
|
2019-03-12 16:06:18 +05:30
|
|
|
call utilities_FFTscalarForward
|
2020-01-31 03:37:45 +05:30
|
|
|
call utilities_fourierGreenConvolution(K_ref, mu_ref, params%timeinc)
|
2019-03-12 16:06:18 +05:30
|
|
|
call utilities_FFTscalarBackward
|
2015-06-03 23:00:31 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! constructing residual
|
2020-01-31 03:37:45 +05:30
|
|
|
f_scal = T_current - scalarField_real(1:grid(1),1:grid(2),1:grid3)
|
2015-06-03 23:00:31 +05:30
|
|
|
|
2019-03-12 10:23:12 +05:30
|
|
|
end subroutine formResidual
|
2015-06-03 23:00:31 +05:30
|
|
|
|
2020-01-31 03:37:45 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief update reference viscosity and conductivity
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
subroutine updateReference
|
|
|
|
|
|
|
|
integer :: i,j,k,cell,ierr
|
|
|
|
|
|
|
|
cell = 0
|
|
|
|
K_ref = 0.0_pReal
|
|
|
|
mu_ref = 0.0_pReal
|
|
|
|
do k = 1, grid3; do j = 1, grid(2); do i = 1,grid(1)
|
|
|
|
cell = cell + 1
|
2020-02-29 17:27:19 +05:30
|
|
|
K_ref = K_ref + thermal_conduction_getConductivity(1,cell)
|
|
|
|
mu_ref = mu_ref + thermal_conduction_getMassDensity(1,cell)* thermal_conduction_getSpecificHeat(1,cell)
|
2020-01-31 03:37:45 +05:30
|
|
|
enddo; enddo; enddo
|
|
|
|
K_ref = K_ref*wgt
|
|
|
|
call MPI_Allreduce(MPI_IN_PLACE,K_ref,9,MPI_DOUBLE,MPI_SUM,PETSC_COMM_WORLD,ierr)
|
|
|
|
mu_ref = mu_ref*wgt
|
|
|
|
call MPI_Allreduce(MPI_IN_PLACE,mu_ref,1,MPI_DOUBLE,MPI_SUM,PETSC_COMM_WORLD,ierr)
|
|
|
|
|
|
|
|
end subroutine updateReference
|
|
|
|
|
|
|
|
|
2019-03-12 04:07:06 +05:30
|
|
|
end module grid_thermal_spectral
|