FrontISTR  5.8.0
Large-scale structural analysis program with finit element method
heat_mat_ass_boundary.f90
Go to the documentation of this file.
1 !-------------------------------------------------------------------------------
2 ! Copyright (c) 2019 FrontISTR Commons
3 ! This software is released under the MIT License, see LICENSE.txt
4 !-------------------------------------------------------------------------------
8 contains
9 
10  subroutine heat_mat_ass_boundary(hecMESH, hecMAT, hecMESHmpc, hecMATmpc, &
11  & fstrSOLID, fstrHEAT, next_time, delta_time)
12  use m_fstr
18  implicit none
19  type(fstr_solid) :: fstrSOLID
20  type(fstr_heat) :: fstrHEAT
21  type(hecmwst_matrix) :: hecMAT
22  type(hecmwst_matrix), pointer :: hecMATmpc
23  type(hecmwst_local_mesh) :: hecMESH
24  type(hecmwst_local_mesh), pointer :: hecMESHmpc
25  real(kind=kreal) :: next_time, delta_time, beta
26 
27  beta = fstrheat%beta
28 
30  call heat_mat_ass_bc_cflux(hecmat, fstrheat, next_time, delta_time, beta)
31 
33  call heat_mat_ass_bc_dflux(hecmesh, hecmat, fstrsolid, fstrheat, next_time, delta_time, beta)
34 
36  call heat_mat_ass_bc_film(hecmesh, hecmat, fstrsolid, fstrheat, next_time, delta_time, beta)
37 
39  call heat_mat_ass_bc_radiate(hecmesh, hecmat, fstrheat, next_time, delta_time, beta)
40 
42  call heat_mat_ass_bc_fixt(hecmat, fstrheat, next_time, delta_time, beta)
43 
45  call hecmw_mpc_mat_ass(hecmesh, hecmat, hecmeshmpc, hecmatmpc)
46  call hecmw_mpc_trans_rhs(hecmesh, hecmat, hecmatmpc)
47 
48  end subroutine heat_mat_ass_boundary
49 end module m_heat_mat_ass_boundary
This module defines common data and basic structures for analysis.
Definition: m_fstr.f90:15
This module provides a subroutine for setting concerntrated heat flux boundary conditions.
subroutine heat_mat_ass_bc_cflux(hecMAT, fstrHEAT, CTIME, DTIME, beta)
This module provides a subroutine for setting distributed heat flux boundary conditions.
subroutine heat_mat_ass_bc_dflux(hecMESH, hecMAT, fstrSOLID, fstrHEAT, CTIME, DTIME, beta)
This module provides a subroutine for setting heat transfer boundary conditions.
subroutine heat_mat_ass_bc_film(hecMESH, hecMAT, fstrSOLID, fstrHEAT, CTIME, DTIME, beta)
This module provides a subroutine for setting fixed temperature boundary conditions.
subroutine heat_mat_ass_bc_fixt(hecMAT, fstrHEAT, CTIME, DTIME, beta)
This module provides a subroutine for setting heat radiate boundary conditions.
subroutine heat_mat_ass_bc_radiate(hecMESH, hecMAT, fstrHEAT, CTIME, DTIME, beta)
This module provides a subroutine for all boundary conditions needed in heat analysis.
subroutine heat_mat_ass_boundary(hecMESH, hecMAT, hecMESHmpc, hecMATmpc, fstrSOLID, fstrHEAT, next_time, delta_time)
Data for HEAT ANSLYSIS (fstrHEAT)
Definition: m_fstr.f90:431