2020-01-27 00:26:30 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-06-10 14:37:17 +05:30
|
|
|
!> @author Martin Diehl, Max-Planck-Institut für Eisenforschung GmbH
|
2023-02-05 19:28:24 +05:30
|
|
|
!> @brief Read in the material and numerics configuration from their respective file.
|
2018-06-10 14:37:17 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-06-14 10:09:49 +05:30
|
|
|
module config
|
2019-05-17 02:26:48 +05:30
|
|
|
use IO
|
2020-06-16 22:17:19 +05:30
|
|
|
use YAML_parse
|
|
|
|
use YAML_types
|
2023-01-19 22:07:45 +05:30
|
|
|
use result
|
2021-07-27 10:58:35 +05:30
|
|
|
use parallelization
|
2020-08-15 19:32:10 +05:30
|
|
|
|
2022-06-22 02:16:54 +05:30
|
|
|
implicit none(type,external)
|
2019-05-15 02:42:32 +05:30
|
|
|
private
|
2019-05-17 02:26:48 +05:30
|
|
|
|
2022-10-25 21:39:36 +05:30
|
|
|
type(tDict), pointer, public :: &
|
2020-09-13 14:09:17 +05:30
|
|
|
config_material, &
|
2023-02-05 19:28:24 +05:30
|
|
|
config_numerics
|
2020-08-15 19:32:10 +05:30
|
|
|
|
2019-03-29 13:04:44 +05:30
|
|
|
public :: &
|
|
|
|
config_init, &
|
|
|
|
config_deallocate
|
2018-06-10 22:08:31 +05:30
|
|
|
|
2018-06-09 00:31:58 +05:30
|
|
|
contains
|
|
|
|
|
2018-06-27 00:00:41 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2023-02-05 19:28:24 +05:30
|
|
|
!> @brief Read *.yaml configuration files.
|
2018-06-27 00:00:41 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2022-04-24 08:13:44 +05:30
|
|
|
subroutine config_init()
|
2019-05-17 02:26:48 +05:30
|
|
|
|
2021-11-15 23:05:44 +05:30
|
|
|
print'(/,1x,a)', '<<<+- config init -+>>>'; flush(IO_STDOUT)
|
2021-07-27 10:58:35 +05:30
|
|
|
|
2022-04-24 08:13:44 +05:30
|
|
|
call parse_material()
|
|
|
|
call parse_numerics()
|
2020-08-15 19:32:10 +05:30
|
|
|
|
|
|
|
end subroutine config_init
|
|
|
|
|
2019-03-29 13:04:44 +05:30
|
|
|
|
2020-08-15 19:32:10 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2022-04-24 08:13:44 +05:30
|
|
|
!> @brief Read material.yaml.
|
2020-08-15 19:32:10 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2021-07-27 10:58:35 +05:30
|
|
|
subroutine parse_material()
|
2019-03-29 13:04:44 +05:30
|
|
|
|
2020-08-15 19:32:10 +05:30
|
|
|
logical :: fileExists
|
2021-07-27 10:58:35 +05:30
|
|
|
character(len=:), allocatable :: fileContent
|
2021-02-13 04:05:06 +05:30
|
|
|
|
|
|
|
|
|
|
|
inquire(file='material.yaml',exist=fileExists)
|
2021-11-15 23:05:44 +05:30
|
|
|
if (.not. fileExists) call IO_error(100,ext_msg='material.yaml')
|
2021-07-27 12:05:52 +05:30
|
|
|
|
2021-07-27 10:58:35 +05:30
|
|
|
if (worldrank == 0) then
|
2021-11-15 23:05:44 +05:30
|
|
|
print'(/,1x,a)', 'reading material.yaml'; flush(IO_STDOUT)
|
2021-07-27 12:24:17 +05:30
|
|
|
fileContent = IO_read('material.yaml')
|
2023-01-19 22:07:45 +05:30
|
|
|
call result_openJobFile(parallel=.false.)
|
|
|
|
call result_writeDataset_str(fileContent,'setup','material.yaml','main configuration')
|
|
|
|
call result_closeJobFile
|
2021-11-15 23:05:44 +05:30
|
|
|
end if
|
2021-07-27 12:24:17 +05:30
|
|
|
call parallelization_bcast_str(fileContent)
|
2021-07-27 12:05:52 +05:30
|
|
|
|
2022-10-25 21:39:36 +05:30
|
|
|
config_material => YAML_parse_str_asDict(fileContent)
|
2018-06-09 17:18:37 +05:30
|
|
|
|
2020-08-15 19:32:10 +05:30
|
|
|
end subroutine parse_material
|
2019-03-13 02:18:33 +05:30
|
|
|
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-09-14 00:58:53 +05:30
|
|
|
!> @brief Read numerics.yaml.
|
2019-03-13 02:18:33 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2021-07-27 10:58:35 +05:30
|
|
|
subroutine parse_numerics()
|
2020-08-15 19:32:10 +05:30
|
|
|
|
2021-07-27 10:58:35 +05:30
|
|
|
logical :: fileExists
|
|
|
|
character(len=:), allocatable :: fileContent
|
2020-08-15 19:32:10 +05:30
|
|
|
|
2021-02-13 04:05:06 +05:30
|
|
|
|
2020-09-13 14:09:17 +05:30
|
|
|
config_numerics => emptyDict
|
2021-07-27 12:05:52 +05:30
|
|
|
|
2021-07-27 10:58:35 +05:30
|
|
|
inquire(file='numerics.yaml', exist=fileExists)
|
|
|
|
if (fileExists) then
|
2021-07-27 12:05:52 +05:30
|
|
|
|
2021-07-27 10:58:35 +05:30
|
|
|
if (worldrank == 0) then
|
2021-11-15 23:05:44 +05:30
|
|
|
print'(1x,a)', 'reading numerics.yaml'; flush(IO_STDOUT)
|
2021-07-27 12:24:17 +05:30
|
|
|
fileContent = IO_read('numerics.yaml')
|
2021-08-14 23:31:25 +05:30
|
|
|
if (len(fileContent) > 0) then
|
2023-01-19 22:07:45 +05:30
|
|
|
call result_openJobFile(parallel=.false.)
|
|
|
|
call result_writeDataset_str(fileContent,'setup','numerics.yaml','numerics configuration')
|
|
|
|
call result_closeJobFile
|
2021-11-15 23:05:44 +05:30
|
|
|
end if
|
|
|
|
end if
|
2021-07-27 12:24:17 +05:30
|
|
|
call parallelization_bcast_str(fileContent)
|
2021-07-27 12:05:52 +05:30
|
|
|
|
2022-10-25 21:39:36 +05:30
|
|
|
config_numerics => YAML_parse_str_asDict(fileContent)
|
2021-07-27 12:05:52 +05:30
|
|
|
|
2021-11-15 23:05:44 +05:30
|
|
|
end if
|
2019-03-13 02:18:33 +05:30
|
|
|
|
2020-08-15 19:32:10 +05:30
|
|
|
end subroutine parse_numerics
|
2019-03-13 02:18:33 +05:30
|
|
|
|
2018-06-09 00:31:58 +05:30
|
|
|
|
2020-08-15 19:32:10 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-09-14 00:58:53 +05:30
|
|
|
!> @brief Deallocate config_material.
|
2023-02-05 19:28:24 +05:30
|
|
|
!ToDo: deallocation of numerics (optional)
|
2020-08-15 19:32:10 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
subroutine config_deallocate
|
2018-06-27 00:00:41 +05:30
|
|
|
|
2020-09-13 14:09:17 +05:30
|
|
|
deallocate(config_material)
|
2020-09-12 19:26:59 +05:30
|
|
|
|
2018-06-27 00:00:41 +05:30
|
|
|
end subroutine config_deallocate
|
|
|
|
|
2018-06-14 10:09:49 +05:30
|
|
|
end module config
|