2016-09-21 01:08:18 +05:30
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-08-20 19:29:13 +05:30
|
|
|
|
!> @author Jaeyong Jung, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
|
!> @author Pratheek Shanthraj, Max-Planck-Institut für Eisenforschung GmbH
|
2016-09-21 01:08:18 +05:30
|
|
|
|
!> @author Martin Diehl, Max-Planck-Institut für Eisenforschung GmbH
|
2013-01-02 22:32:12 +05:30
|
|
|
|
!> @author Philip Eisenlohr, Max-Planck-Institut für Eisenforschung GmbH
|
2018-08-20 19:29:13 +05:30
|
|
|
|
!> @brief Interfacing between the PETSc-based solvers and the material subroutines provided
|
2013-01-02 22:32:12 +05:30
|
|
|
|
!! by DAMASK
|
2018-08-20 19:29:13 +05:30
|
|
|
|
!> @details Interfacing between the PETSc-based solvers and the material subroutines provided
|
2020-06-26 15:14:17 +05:30
|
|
|
|
!> by DAMASK. Interpreting the command line arguments to get load case, geometry file,
|
2018-08-05 14:11:01 +05:30
|
|
|
|
!> and working directory.
|
2014-10-10 18:38:34 +05:30
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-04-03 11:55:42 +05:30
|
|
|
|
#define PETSC_MAJOR 3
|
|
|
|
|
#define PETSC_MINOR_MIN 10
|
2020-04-02 13:20:02 +05:30
|
|
|
|
#define PETSC_MINOR_MAX 13
|
2019-05-28 15:36:21 +05:30
|
|
|
|
|
2012-03-06 20:22:48 +05:30
|
|
|
|
module DAMASK_interface
|
2019-05-28 15:36:21 +05:30
|
|
|
|
use, intrinsic :: iso_fortran_env
|
2020-01-23 14:05:41 +05:30
|
|
|
|
|
2019-05-28 15:36:21 +05:30
|
|
|
|
use PETScSys
|
|
|
|
|
|
2019-05-11 15:40:23 +05:30
|
|
|
|
use prec
|
2020-09-12 19:36:33 +05:30
|
|
|
|
use parallelization
|
2019-05-11 15:40:23 +05:30
|
|
|
|
use system_routines
|
2020-06-26 15:14:17 +05:30
|
|
|
|
|
2019-03-06 20:17:48 +05:30
|
|
|
|
implicit none
|
|
|
|
|
private
|
2020-03-29 22:43:29 +05:30
|
|
|
|
logical, volatile, public, protected :: &
|
2020-09-13 14:35:42 +05:30
|
|
|
|
interface_SIGTERM, & !< termination signal
|
|
|
|
|
interface_SIGUSR1, & !< 1. user-defined signal
|
|
|
|
|
interface_SIGUSR2 !< 2. user-defined signal
|
2020-01-23 14:05:41 +05:30
|
|
|
|
integer, public, protected :: &
|
2019-03-06 20:17:48 +05:30
|
|
|
|
interface_restartInc = 0 !< Increment at which calculation starts
|
2020-01-23 14:05:41 +05:30
|
|
|
|
character(len=:), allocatable, public, protected :: &
|
2020-09-13 14:35:42 +05:30
|
|
|
|
interface_geomFile, & !< parameter given for geometry file
|
|
|
|
|
interface_loadFile !< parameter given for load case file
|
2019-03-06 20:17:48 +05:30
|
|
|
|
|
|
|
|
|
public :: &
|
|
|
|
|
getSolverJobName, &
|
2019-03-24 16:29:00 +05:30
|
|
|
|
DAMASK_interface_init, &
|
2020-09-13 14:35:42 +05:30
|
|
|
|
interface_setSIGTERM, &
|
|
|
|
|
interface_setSIGUSR1, &
|
|
|
|
|
interface_setSIGUSR2
|
2019-05-09 11:55:56 +05:30
|
|
|
|
|
2012-03-06 20:22:48 +05:30
|
|
|
|
contains
|
|
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2012-03-09 01:55:28 +05:30
|
|
|
|
!> @brief initializes the solver by interpreting the command line arguments. Also writes
|
2012-06-15 21:40:21 +05:30
|
|
|
|
!! information on computation to screen
|
2012-03-06 20:22:48 +05:30
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-05-03 09:51:43 +05:30
|
|
|
|
subroutine DAMASK_interface_init
|
2018-05-17 15:34:21 +05:30
|
|
|
|
#include <petsc/finclude/petscsys.h>
|
2018-10-15 08:33:53 +05:30
|
|
|
|
|
2019-04-03 18:19:16 +05:30
|
|
|
|
#if PETSC_VERSION_MAJOR!=3 || PETSC_VERSION_MINOR<PETSC_MINOR_MIN || PETSC_VERSION_MINOR>PETSC_MINOR_MAX
|
2018-08-20 21:27:15 +05:30
|
|
|
|
===================================================================================================
|
2019-04-03 15:23:59 +05:30
|
|
|
|
-- WRONG PETSc VERSION --- WRONG PETSc VERSION --- WRONG PETSc VERSION --- WRONG PETSc VERSION --
|
2018-08-20 21:27:15 +05:30
|
|
|
|
===================================================================================================
|
2019-04-03 15:23:59 +05:30
|
|
|
|
============ THIS VERSION OF DAMASK REQUIRES A DIFFERENT PETSc VERSION ========================
|
|
|
|
|
=============== THIS VERSION OF DAMASK REQUIRES A DIFFERENT PETSc VERSION =====================
|
|
|
|
|
================== THIS VERSION OF DAMASK REQUIRES A DIFFERENT PETSc VERSION ==================
|
2018-08-20 21:27:15 +05:30
|
|
|
|
===================================================================================================
|
2019-04-03 15:23:59 +05:30
|
|
|
|
-- WRONG PETSc VERSION --- WRONG PETSc VERSION --- WRONG PETSc VERSION --- WRONG PETSc VERSION --
|
2018-05-17 15:34:21 +05:30
|
|
|
|
===================================================================================================
|
|
|
|
|
#endif
|
2018-10-15 08:33:53 +05:30
|
|
|
|
|
2020-01-26 17:48:29 +05:30
|
|
|
|
character(len=pPathLen*3+pStringLen) :: &
|
|
|
|
|
commandLine !< command line call as string
|
|
|
|
|
character(len=pPathLen) :: &
|
2019-03-24 15:18:46 +05:30
|
|
|
|
arg, & !< individual argument
|
|
|
|
|
loadCaseArg = '', & !< -l argument given to the executable
|
2019-03-06 20:17:48 +05:30
|
|
|
|
geometryArg = '', & !< -g argument given to the executable
|
2020-01-26 17:48:29 +05:30
|
|
|
|
workingDirArg = '' !< -w argument given to the executable
|
|
|
|
|
character(len=pStringLen) :: &
|
2019-03-06 20:17:48 +05:30
|
|
|
|
userName !< name of user calling the executable
|
|
|
|
|
integer :: &
|
2019-03-24 15:18:46 +05:30
|
|
|
|
stat, &
|
2020-09-13 13:49:38 +05:30
|
|
|
|
i
|
2019-03-06 20:17:48 +05:30
|
|
|
|
integer, dimension(8) :: &
|
|
|
|
|
dateAndTime
|
2020-05-14 10:29:30 +05:30
|
|
|
|
integer :: err
|
2019-03-06 20:17:48 +05:30
|
|
|
|
external :: &
|
|
|
|
|
quit
|
|
|
|
|
|
2020-09-14 00:45:08 +05:30
|
|
|
|
print'(/,a)', ' <<<+- DAMASK_interface init -+>>>'
|
2019-03-06 20:17:48 +05:30
|
|
|
|
|
2020-09-13 13:49:38 +05:30
|
|
|
|
open(6, encoding='UTF-8') ! for special characters in output
|
|
|
|
|
|
2020-09-12 19:12:03 +05:30
|
|
|
|
! http://patorjk.com/software/taag/#p=display&f=Lean&t=DAMASK%203
|
|
|
|
|
#ifdef DEBUG
|
2020-09-13 16:31:38 +05:30
|
|
|
|
print*, achar(27)//'[31m'
|
2020-09-14 00:45:08 +05:30
|
|
|
|
print'(a,/)', ' debug version - debug version - debug version - debug version - debug version'
|
2020-09-12 19:12:03 +05:30
|
|
|
|
#else
|
2020-09-13 16:31:38 +05:30
|
|
|
|
print*, achar(27)//'[94m'
|
2020-09-12 19:12:03 +05:30
|
|
|
|
#endif
|
2020-09-13 16:31:38 +05:30
|
|
|
|
print*, ' _/_/_/ _/_/ _/ _/ _/_/ _/_/_/ _/ _/ _/_/_/'
|
|
|
|
|
print*, ' _/ _/ _/ _/ _/_/ _/_/ _/ _/ _/ _/ _/ _/'
|
|
|
|
|
print*, ' _/ _/ _/_/_/_/ _/ _/ _/ _/_/_/_/ _/_/ _/_/ _/_/'
|
|
|
|
|
print*, ' _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/'
|
|
|
|
|
print*, ' _/_/_/ _/ _/ _/ _/ _/ _/ _/_/_/ _/ _/ _/_/_/'
|
2020-09-12 19:12:03 +05:30
|
|
|
|
#ifdef DEBUG
|
2020-09-14 00:45:08 +05:30
|
|
|
|
print'(/,a)', ' debug version - debug version - debug version - debug version - debug version'
|
2020-09-12 19:12:03 +05:30
|
|
|
|
#endif
|
2020-09-13 16:31:38 +05:30
|
|
|
|
print*, achar(27)//'[0m'
|
2019-03-13 10:46:31 +05:30
|
|
|
|
|
2020-09-14 00:45:08 +05:30
|
|
|
|
print'(a)', ' Roters et al., Computational Materials Science 158:420–478, 2019'
|
|
|
|
|
print'(a)', ' https://doi.org/10.1016/j.commatsci.2018.04.030'
|
2019-03-09 15:19:56 +05:30
|
|
|
|
|
2020-09-14 00:45:08 +05:30
|
|
|
|
print'(/,a)', ' Version: '//DAMASKVERSION
|
2019-03-06 20:17:48 +05:30
|
|
|
|
|
2020-01-23 14:05:41 +05:30
|
|
|
|
! https://github.com/jeffhammond/HPCInfo/blob/master/docs/Preprocessor-Macros.md
|
2020-09-12 18:35:07 +05:30
|
|
|
|
#if defined(__PGI)
|
2020-09-14 00:45:08 +05:30
|
|
|
|
print'(/,a,i4.4,a,i8.8)', ' Compiled with PGI fortran version :', __PGIC__,&
|
2020-09-12 18:35:07 +05:30
|
|
|
|
'.', __PGIC_MINOR__
|
|
|
|
|
#else
|
2020-09-14 00:45:08 +05:30
|
|
|
|
print'(/,a)', ' Compiled with: '//compiler_version()
|
|
|
|
|
print'(a)', ' Compiler options: '//compiler_options()
|
2019-02-16 03:24:38 +05:30
|
|
|
|
#endif
|
|
|
|
|
|
2020-09-14 00:45:08 +05:30
|
|
|
|
print'(/,a)', ' Compiled on: '//__DATE__//' at '//__TIME__
|
2019-03-09 15:19:56 +05:30
|
|
|
|
|
|
|
|
|
call date_and_time(values = dateAndTime)
|
2020-09-14 00:45:08 +05:30
|
|
|
|
print'(/,a,2(i2.2,a),i4.4)', ' Date: ',dateAndTime(3),'/',dateAndTime(2),'/', dateAndTime(1)
|
|
|
|
|
print'(a,2(i2.2,a),i2.2)', ' Time: ',dateAndTime(5),':', dateAndTime(6),':', dateAndTime(7)
|
2019-03-06 20:17:48 +05:30
|
|
|
|
|
2019-03-24 15:18:46 +05:30
|
|
|
|
do i = 1, command_argument_count()
|
2020-05-14 10:29:30 +05:30
|
|
|
|
call get_command_argument(i,arg,status=err)
|
|
|
|
|
if (err /= 0) call quit(1)
|
2019-03-24 15:18:46 +05:30
|
|
|
|
select case(trim(arg)) ! extract key
|
2019-03-06 20:17:48 +05:30
|
|
|
|
case ('-h','--help')
|
2020-09-14 00:45:08 +05:30
|
|
|
|
print'(a)', ' #######################################################################'
|
|
|
|
|
print'(a)', ' DAMASK Command Line Interface:'
|
|
|
|
|
print'(a)', ' For PETSc-based solvers for the Düsseldorf Advanced Material Simulation Kit'
|
|
|
|
|
print'(a,/)',' #######################################################################'
|
|
|
|
|
print'(a,/)',' Valid command line switches:'
|
|
|
|
|
print'(a)', ' --geom (-g, --geometry)'
|
|
|
|
|
print'(a)', ' --load (-l, --loadcase)'
|
|
|
|
|
print'(a)', ' --workingdir (-w, --wd, --workingdirectory)'
|
|
|
|
|
print'(a)', ' --restart (-r, --rs)'
|
|
|
|
|
print'(a)', ' --help (-h)'
|
|
|
|
|
print'(/,a)',' -----------------------------------------------------------------------'
|
|
|
|
|
print'(a)', ' Mandatory arguments:'
|
|
|
|
|
print'(/,a)',' --geom PathToGeomFile/NameOfGeom'
|
|
|
|
|
print'(a)', ' Specifies the location of the geometry definition file.'
|
|
|
|
|
print'(/,a)',' --load PathToLoadFile/NameOfLoadFile'
|
|
|
|
|
print'(a)', ' Specifies the location of the load case definition file.'
|
|
|
|
|
print'(/,a)',' -----------------------------------------------------------------------'
|
|
|
|
|
print'(a)', ' Optional arguments:'
|
|
|
|
|
print'(/,a)',' --workingdirectory PathToWorkingDirectory'
|
|
|
|
|
print'(a)', ' Specifies the working directory and overwrites the default ./'
|
|
|
|
|
print'(a)', ' Make sure the file "material.config" exists in the working'
|
|
|
|
|
print'(a)', ' directory.'
|
|
|
|
|
print'(a)', ' For further configuration place "numerics.config"'
|
|
|
|
|
print'(a)',' and "debug.config" in that directory.'
|
|
|
|
|
print'(/,a)',' --restart N'
|
|
|
|
|
print'(a)', ' Reads in increment N and continues with calculating'
|
|
|
|
|
print'(a)', ' increment N+1 based on this.'
|
|
|
|
|
print'(a)', ' Appends to existing results file'
|
|
|
|
|
print'(a)', ' "NameOfGeom_NameOfLoadFile.hdf5".'
|
|
|
|
|
print'(a)', ' Works only if the restart information for increment N'
|
|
|
|
|
print'(a)', ' is available in the working directory.'
|
|
|
|
|
print'(/,a)',' -----------------------------------------------------------------------'
|
|
|
|
|
print'(a)', ' Help:'
|
|
|
|
|
print'(/,a)',' --help'
|
|
|
|
|
print'(a,/)',' Prints this message and exits'
|
2019-03-06 20:17:48 +05:30
|
|
|
|
call quit(0) ! normal Termination
|
|
|
|
|
case ('-l', '--load', '--loadcase')
|
2020-05-16 22:02:30 +05:30
|
|
|
|
call get_command_argument(i+1,loadCaseArg,status=err)
|
2019-03-06 20:17:48 +05:30
|
|
|
|
case ('-g', '--geom', '--geometry')
|
2020-05-16 22:02:30 +05:30
|
|
|
|
call get_command_argument(i+1,geometryArg,status=err)
|
2020-04-26 12:06:16 +05:30
|
|
|
|
case ('-w', '--wd', '--workingdir', '--workingdirectory')
|
2020-05-16 22:02:30 +05:30
|
|
|
|
call get_command_argument(i+1,workingDirArg,status=err)
|
2019-03-06 20:17:48 +05:30
|
|
|
|
case ('-r', '--rs', '--restart')
|
2020-05-16 22:02:30 +05:30
|
|
|
|
call get_command_argument(i+1,arg,status=err)
|
2019-03-24 15:18:46 +05:30
|
|
|
|
read(arg,*,iostat=stat) interface_restartInc
|
|
|
|
|
if (interface_restartInc < 0 .or. stat /=0) then
|
2020-09-14 00:45:08 +05:30
|
|
|
|
print'(/,a)', ' ERROR: Could not parse restart increment: '//trim(arg)
|
2019-03-24 15:18:46 +05:30
|
|
|
|
call quit(1)
|
2019-03-06 20:17:48 +05:30
|
|
|
|
endif
|
|
|
|
|
end select
|
2020-05-14 10:29:30 +05:30
|
|
|
|
if (err /= 0) call quit(1)
|
2019-03-06 20:17:48 +05:30
|
|
|
|
enddo
|
|
|
|
|
|
|
|
|
|
if (len_trim(loadcaseArg) == 0 .or. len_trim(geometryArg) == 0) then
|
2020-09-14 00:45:08 +05:30
|
|
|
|
print'(/,a)', ' ERROR: Please specify geometry AND load case (-h for help)'
|
2019-03-06 20:17:48 +05:30
|
|
|
|
call quit(1)
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
if (len_trim(workingDirArg) > 0) call setWorkingDirectory(trim(workingDirArg))
|
2020-09-13 14:35:42 +05:30
|
|
|
|
interface_geomFile = getGeometryFile(geometryArg)
|
|
|
|
|
interface_loadFile = getLoadCaseFile(loadCaseArg)
|
2019-03-06 20:17:48 +05:30
|
|
|
|
|
2019-03-24 15:18:46 +05:30
|
|
|
|
call get_command(commandLine)
|
2019-03-06 20:17:48 +05:30
|
|
|
|
call get_environment_variable('USER',userName)
|
|
|
|
|
! ToDo: https://stackoverflow.com/questions/8953424/how-to-get-the-username-in-c-c-in-linux
|
2020-09-14 00:45:08 +05:30
|
|
|
|
print'(a)', ' Host name: '//trim(getHostName())
|
|
|
|
|
print'(a)', ' User name: '//trim(userName)
|
2019-03-06 20:17:48 +05:30
|
|
|
|
|
2020-09-14 00:45:08 +05:30
|
|
|
|
print'(/a)', ' Command line call: '//trim(commandLine)
|
2020-01-26 23:01:56 +05:30
|
|
|
|
if (len_trim(workingDirArg) > 0) &
|
2020-09-14 00:45:08 +05:30
|
|
|
|
print'(a)', ' Working dir argument: '//trim(workingDirArg)
|
|
|
|
|
print'(a)', ' Geometry argument: '//trim(geometryArg)
|
|
|
|
|
print'(a)', ' Load case argument: '//trim(loadcaseArg)
|
|
|
|
|
print'(a)', ' Working directory: '//getCWD()
|
|
|
|
|
print'(a)', ' Geometry file: '//interface_geomFile
|
|
|
|
|
print'(a)', ' Loadcase file: '//interface_loadFile
|
|
|
|
|
print'(a)', ' Solver job name: '//getSolverJobName()
|
2019-03-06 20:17:48 +05:30
|
|
|
|
if (interface_restartInc > 0) &
|
2020-09-14 00:45:08 +05:30
|
|
|
|
print'(a,i6.6)', ' Restart from increment: ', interface_restartInc
|
2019-03-06 20:17:48 +05:30
|
|
|
|
|
2019-03-24 16:29:00 +05:30
|
|
|
|
!call signalterm_c(c_funloc(catchSIGTERM))
|
|
|
|
|
call signalusr1_c(c_funloc(catchSIGUSR1))
|
|
|
|
|
call signalusr2_c(c_funloc(catchSIGUSR2))
|
2020-09-13 14:35:42 +05:30
|
|
|
|
call interface_setSIGTERM(.false.)
|
|
|
|
|
call interface_setSIGUSR1(.false.)
|
|
|
|
|
call interface_setSIGUSR2(.false.)
|
2019-02-11 23:16:14 +05:30
|
|
|
|
|
2012-03-06 20:22:48 +05:30
|
|
|
|
end subroutine DAMASK_interface_init
|
2011-11-04 01:02:11 +05:30
|
|
|
|
|
2013-01-02 22:32:12 +05:30
|
|
|
|
|
2018-06-18 19:49:03 +05:30
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
!> @brief extract working directory from given argument or from location of geometry file,
|
|
|
|
|
!! possibly converting relative arguments to absolut path
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-08-21 02:44:34 +05:30
|
|
|
|
subroutine setWorkingDirectory(workingDirectoryArg)
|
2019-03-06 20:17:48 +05:30
|
|
|
|
|
|
|
|
|
character(len=*), intent(in) :: workingDirectoryArg !< working directory argument
|
2020-01-26 17:48:29 +05:30
|
|
|
|
character(len=pPathLen) :: workingDirectory
|
2019-03-06 20:17:48 +05:30
|
|
|
|
logical :: error
|
|
|
|
|
external :: quit
|
|
|
|
|
|
|
|
|
|
absolutePath: if (workingDirectoryArg(1:1) == '/') then
|
|
|
|
|
workingDirectory = workingDirectoryArg
|
|
|
|
|
else absolutePath
|
|
|
|
|
workingDirectory = getCWD()
|
|
|
|
|
workingDirectory = trim(workingDirectory)//'/'//workingDirectoryArg
|
|
|
|
|
endif absolutePath
|
|
|
|
|
|
|
|
|
|
workingDirectory = trim(rectifyPath(workingDirectory))
|
|
|
|
|
error = setCWD(trim(workingDirectory))
|
|
|
|
|
if(error) then
|
2020-09-14 00:45:08 +05:30
|
|
|
|
print*, 'ERROR: Invalid Working directory: '//trim(workingDirectory)
|
2019-03-06 20:17:48 +05:30
|
|
|
|
call quit(1)
|
|
|
|
|
endif
|
2013-01-02 22:32:12 +05:30
|
|
|
|
|
2018-08-21 02:44:34 +05:30
|
|
|
|
end subroutine setWorkingDirectory
|
added fftw3 as fft(library will not versioned, should be in a linkable folder) , did some corrections on the code, splitted main file up (allows use of makefile), added makefile
changes on mpie_spectral.f90:
new structure, changed variable names, now using defgrad instead of disgrad, cleaned up, removed augmented Lagrange.
ToDo: Implement Augmented Lagrange again (but then a working version), implement Large strain, think about complex-to real-transform backwards, try to implement MP-support
2010-08-27 22:09:38 +05:30
|
|
|
|
|
2011-11-04 01:02:11 +05:30
|
|
|
|
|
2012-03-06 20:22:48 +05:30
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2012-06-15 21:40:21 +05:30
|
|
|
|
!> @brief solver job name (no extension) as combination of geometry and load case name
|
2012-03-06 20:22:48 +05:30
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-01-04 22:55:59 +05:30
|
|
|
|
function getSolverJobName()
|
added fftw3 as fft(library will not versioned, should be in a linkable folder) , did some corrections on the code, splitted main file up (allows use of makefile), added makefile
changes on mpie_spectral.f90:
new structure, changed variable names, now using defgrad instead of disgrad, cleaned up, removed augmented Lagrange.
ToDo: Implement Augmented Lagrange again (but then a working version), implement Large strain, think about complex-to real-transform backwards, try to implement MP-support
2010-08-27 22:09:38 +05:30
|
|
|
|
|
2020-01-04 22:55:59 +05:30
|
|
|
|
character(len=:), allocatable :: getSolverJobName
|
2019-03-06 20:17:48 +05:30
|
|
|
|
integer :: posExt,posSep
|
2012-02-21 21:34:16 +05:30
|
|
|
|
|
2020-09-13 14:35:42 +05:30
|
|
|
|
posExt = scan(interface_geomFile,'.',back=.true.)
|
|
|
|
|
posSep = scan(interface_geomFile,'/',back=.true.)
|
added fftw3 as fft(library will not versioned, should be in a linkable folder) , did some corrections on the code, splitted main file up (allows use of makefile), added makefile
changes on mpie_spectral.f90:
new structure, changed variable names, now using defgrad instead of disgrad, cleaned up, removed augmented Lagrange.
ToDo: Implement Augmented Lagrange again (but then a working version), implement Large strain, think about complex-to real-transform backwards, try to implement MP-support
2010-08-27 22:09:38 +05:30
|
|
|
|
|
2020-09-13 14:35:42 +05:30
|
|
|
|
getSolverJobName = interface_geomFile(posSep+1:posExt-1)
|
added fftw3 as fft(library will not versioned, should be in a linkable folder) , did some corrections on the code, splitted main file up (allows use of makefile), added makefile
changes on mpie_spectral.f90:
new structure, changed variable names, now using defgrad instead of disgrad, cleaned up, removed augmented Lagrange.
ToDo: Implement Augmented Lagrange again (but then a working version), implement Large strain, think about complex-to real-transform backwards, try to implement MP-support
2010-08-27 22:09:38 +05:30
|
|
|
|
|
2020-09-13 14:35:42 +05:30
|
|
|
|
posExt = scan(interface_loadFile,'.',back=.true.)
|
|
|
|
|
posSep = scan(interface_loadFile,'/',back=.true.)
|
2012-06-15 21:40:21 +05:30
|
|
|
|
|
2020-09-13 14:35:42 +05:30
|
|
|
|
getSolverJobName = getSolverJobName//'_'//interface_loadFile(posSep+1:posExt-1)
|
added fftw3 as fft(library will not versioned, should be in a linkable folder) , did some corrections on the code, splitted main file up (allows use of makefile), added makefile
changes on mpie_spectral.f90:
new structure, changed variable names, now using defgrad instead of disgrad, cleaned up, removed augmented Lagrange.
ToDo: Implement Augmented Lagrange again (but then a working version), implement Large strain, think about complex-to real-transform backwards, try to implement MP-support
2010-08-27 22:09:38 +05:30
|
|
|
|
|
2012-06-15 21:40:21 +05:30
|
|
|
|
end function getSolverJobName
|
added fftw3 as fft(library will not versioned, should be in a linkable folder) , did some corrections on the code, splitted main file up (allows use of makefile), added makefile
changes on mpie_spectral.f90:
new structure, changed variable names, now using defgrad instead of disgrad, cleaned up, removed augmented Lagrange.
ToDo: Implement Augmented Lagrange again (but then a working version), implement Large strain, think about complex-to real-transform backwards, try to implement MP-support
2010-08-27 22:09:38 +05:30
|
|
|
|
|
2011-02-07 20:05:42 +05:30
|
|
|
|
|
2012-03-06 20:22:48 +05:30
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2012-06-15 21:40:21 +05:30
|
|
|
|
!> @brief basename of geometry file with extension from command line arguments
|
2012-03-06 20:22:48 +05:30
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-01-04 22:55:59 +05:30
|
|
|
|
function getGeometryFile(geometryParameter)
|
2011-02-07 20:05:42 +05:30
|
|
|
|
|
2020-01-04 22:55:59 +05:30
|
|
|
|
character(len=:), allocatable :: getGeometryFile
|
|
|
|
|
character(len=*), intent(in) :: geometryParameter
|
|
|
|
|
logical :: file_exists
|
|
|
|
|
external :: quit
|
2011-02-07 20:05:42 +05:30
|
|
|
|
|
2019-03-06 20:17:48 +05:30
|
|
|
|
getGeometryFile = trim(geometryParameter)
|
2020-01-04 22:55:59 +05:30
|
|
|
|
if (scan(getGeometryFile,'/') /= 1) getGeometryFile = getCWD()//'/'//trim(getGeometryFile)
|
2020-01-23 14:05:41 +05:30
|
|
|
|
getGeometryFile = trim(makeRelativePath(getCWD(), getGeometryFile))
|
2011-02-07 20:05:42 +05:30
|
|
|
|
|
2020-01-23 14:05:41 +05:30
|
|
|
|
inquire(file=getGeometryFile, exist=file_exists)
|
2019-03-06 20:17:48 +05:30
|
|
|
|
if (.not. file_exists) then
|
2020-09-14 00:45:08 +05:30
|
|
|
|
print*, 'ERROR: Geometry file does not exists: '//trim(getGeometryFile)
|
2019-03-06 20:17:48 +05:30
|
|
|
|
call quit(1)
|
|
|
|
|
endif
|
2011-02-07 20:05:42 +05:30
|
|
|
|
|
2012-06-15 21:40:21 +05:30
|
|
|
|
end function getGeometryFile
|
2011-02-07 20:05:42 +05:30
|
|
|
|
|
added fftw3 as fft(library will not versioned, should be in a linkable folder) , did some corrections on the code, splitted main file up (allows use of makefile), added makefile
changes on mpie_spectral.f90:
new structure, changed variable names, now using defgrad instead of disgrad, cleaned up, removed augmented Lagrange.
ToDo: Implement Augmented Lagrange again (but then a working version), implement Large strain, think about complex-to real-transform backwards, try to implement MP-support
2010-08-27 22:09:38 +05:30
|
|
|
|
|
2012-03-06 20:22:48 +05:30
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-06-26 15:14:17 +05:30
|
|
|
|
!> @brief relative path of load case from command line arguments
|
2012-03-06 20:22:48 +05:30
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-01-04 22:55:59 +05:30
|
|
|
|
function getLoadCaseFile(loadCaseParameter)
|
added fftw3 as fft(library will not versioned, should be in a linkable folder) , did some corrections on the code, splitted main file up (allows use of makefile), added makefile
changes on mpie_spectral.f90:
new structure, changed variable names, now using defgrad instead of disgrad, cleaned up, removed augmented Lagrange.
ToDo: Implement Augmented Lagrange again (but then a working version), implement Large strain, think about complex-to real-transform backwards, try to implement MP-support
2010-08-27 22:09:38 +05:30
|
|
|
|
|
2020-01-04 22:55:59 +05:30
|
|
|
|
character(len=:), allocatable :: getLoadCaseFile
|
|
|
|
|
character(len=*), intent(in) :: loadCaseParameter
|
|
|
|
|
logical :: file_exists
|
|
|
|
|
external :: quit
|
2013-12-28 01:33:28 +05:30
|
|
|
|
|
2019-03-06 20:17:48 +05:30
|
|
|
|
getLoadCaseFile = trim(loadCaseParameter)
|
2020-01-04 22:55:59 +05:30
|
|
|
|
if (scan(getLoadCaseFile,'/') /= 1) getLoadCaseFile = getCWD()//'/'//trim(getLoadCaseFile)
|
2020-01-23 14:05:41 +05:30
|
|
|
|
getLoadCaseFile = trim(makeRelativePath(getCWD(), getLoadCaseFile))
|
2012-06-15 21:40:21 +05:30
|
|
|
|
|
2020-01-23 14:05:41 +05:30
|
|
|
|
inquire(file=getLoadCaseFile, exist=file_exists)
|
2019-03-06 20:17:48 +05:30
|
|
|
|
if (.not. file_exists) then
|
2020-09-14 00:45:08 +05:30
|
|
|
|
print*, 'ERROR: Load case file does not exists: '//trim(getLoadCaseFile)
|
2019-03-06 20:17:48 +05:30
|
|
|
|
call quit(1)
|
|
|
|
|
endif
|
2018-09-15 18:24:56 +05:30
|
|
|
|
|
2012-06-15 21:40:21 +05:30
|
|
|
|
end function getLoadCaseFile
|
added fftw3 as fft(library will not versioned, should be in a linkable folder) , did some corrections on the code, splitted main file up (allows use of makefile), added makefile
changes on mpie_spectral.f90:
new structure, changed variable names, now using defgrad instead of disgrad, cleaned up, removed augmented Lagrange.
ToDo: Implement Augmented Lagrange again (but then a working version), implement Large strain, think about complex-to real-transform backwards, try to implement MP-support
2010-08-27 22:09:38 +05:30
|
|
|
|
|
|
|
|
|
|
2012-03-06 20:22:48 +05:30
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-07-10 13:53:21 +05:30
|
|
|
|
!> @brief remove ../, /./, and // from path.
|
2018-06-29 19:06:12 +05:30
|
|
|
|
!> @details works only if absolute path is given
|
2012-03-06 20:22:48 +05:30
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
added fftw3 as fft(library will not versioned, should be in a linkable folder) , did some corrections on the code, splitted main file up (allows use of makefile), added makefile
changes on mpie_spectral.f90:
new structure, changed variable names, now using defgrad instead of disgrad, cleaned up, removed augmented Lagrange.
ToDo: Implement Augmented Lagrange again (but then a working version), implement Large strain, think about complex-to real-transform backwards, try to implement MP-support
2010-08-27 22:09:38 +05:30
|
|
|
|
function rectifyPath(path)
|
|
|
|
|
|
2020-01-26 17:58:12 +05:30
|
|
|
|
character(len=*), intent(in) :: path
|
|
|
|
|
character(len=:), allocatable :: rectifyPath
|
2019-03-06 20:17:48 +05:30
|
|
|
|
integer :: i,j,k,l
|
added fftw3 as fft(library will not versioned, should be in a linkable folder) , did some corrections on the code, splitted main file up (allows use of makefile), added makefile
changes on mpie_spectral.f90:
new structure, changed variable names, now using defgrad instead of disgrad, cleaned up, removed augmented Lagrange.
ToDo: Implement Augmented Lagrange again (but then a working version), implement Large strain, think about complex-to real-transform backwards, try to implement MP-support
2010-08-27 22:09:38 +05:30
|
|
|
|
|
2013-05-13 19:40:48 +05:30
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
! remove /./ from path
|
2019-03-06 20:17:48 +05:30
|
|
|
|
rectifyPath = trim(path)
|
|
|
|
|
l = len_trim(rectifyPath)
|
|
|
|
|
do i = l,3,-1
|
|
|
|
|
if (rectifyPath(i-2:i) == '/./') rectifyPath(i-1:l) = rectifyPath(i+1:l)//' '
|
|
|
|
|
enddo
|
2018-07-10 13:53:21 +05:30
|
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
! remove // from path
|
2019-03-06 20:17:48 +05:30
|
|
|
|
l = len_trim(rectifyPath)
|
|
|
|
|
do i = l,2,-1
|
|
|
|
|
if (rectifyPath(i-1:i) == '//') rectifyPath(i-1:l) = rectifyPath(i:l)//' '
|
|
|
|
|
enddo
|
added fftw3 as fft(library will not versioned, should be in a linkable folder) , did some corrections on the code, splitted main file up (allows use of makefile), added makefile
changes on mpie_spectral.f90:
new structure, changed variable names, now using defgrad instead of disgrad, cleaned up, removed augmented Lagrange.
ToDo: Implement Augmented Lagrange again (but then a working version), implement Large strain, think about complex-to real-transform backwards, try to implement MP-support
2010-08-27 22:09:38 +05:30
|
|
|
|
|
2013-05-13 19:40:48 +05:30
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
! remove ../ and corresponding directory from rectifyPath
|
2019-03-06 20:17:48 +05:30
|
|
|
|
l = len_trim(rectifyPath)
|
|
|
|
|
i = index(rectifyPath(i:l),'../')
|
|
|
|
|
j = 0
|
|
|
|
|
do while (i > j)
|
|
|
|
|
j = scan(rectifyPath(1:i-2),'/',back=.true.)
|
|
|
|
|
rectifyPath(j+1:l) = rectifyPath(i+3:l)//repeat(' ',2+i-j)
|
|
|
|
|
if (rectifyPath(j+1:j+1) == '/') then !search for '//' that appear in case of XXX/../../XXX
|
|
|
|
|
k = len_trim(rectifyPath)
|
|
|
|
|
rectifyPath(j+1:k-1) = rectifyPath(j+2:k)
|
|
|
|
|
rectifyPath(k:k) = ' '
|
|
|
|
|
endif
|
|
|
|
|
i = j+index(rectifyPath(j+1:l),'../')
|
|
|
|
|
enddo
|
|
|
|
|
if(len_trim(rectifyPath) == 0) rectifyPath = '/'
|
2011-08-01 23:40:55 +05:30
|
|
|
|
|
2020-01-26 17:58:12 +05:30
|
|
|
|
rectifyPath = trim(rectifyPath)
|
|
|
|
|
|
2012-03-06 20:22:48 +05:30
|
|
|
|
end function rectifyPath
|
added fftw3 as fft(library will not versioned, should be in a linkable folder) , did some corrections on the code, splitted main file up (allows use of makefile), added makefile
changes on mpie_spectral.f90:
new structure, changed variable names, now using defgrad instead of disgrad, cleaned up, removed augmented Lagrange.
ToDo: Implement Augmented Lagrange again (but then a working version), implement Large strain, think about complex-to real-transform backwards, try to implement MP-support
2010-08-27 22:09:38 +05:30
|
|
|
|
|
2019-03-06 20:17:48 +05:30
|
|
|
|
|
2012-03-06 20:22:48 +05:30
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
!> @brief relative path from absolute a to absolute b
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-01-26 17:58:12 +05:30
|
|
|
|
function makeRelativePath(a,b)
|
added fftw3 as fft(library will not versioned, should be in a linkable folder) , did some corrections on the code, splitted main file up (allows use of makefile), added makefile
changes on mpie_spectral.f90:
new structure, changed variable names, now using defgrad instead of disgrad, cleaned up, removed augmented Lagrange.
ToDo: Implement Augmented Lagrange again (but then a working version), implement Large strain, think about complex-to real-transform backwards, try to implement MP-support
2010-08-27 22:09:38 +05:30
|
|
|
|
|
2019-03-06 20:17:48 +05:30
|
|
|
|
character (len=*), intent(in) :: a,b
|
2020-01-26 17:58:12 +05:30
|
|
|
|
character (len=pPathLen) :: a_cleaned,b_cleaned
|
|
|
|
|
character(len=:), allocatable :: makeRelativePath
|
2019-03-06 20:17:48 +05:30
|
|
|
|
integer :: i,posLastCommonSlash,remainingSlashes
|
added fftw3 as fft(library will not versioned, should be in a linkable folder) , did some corrections on the code, splitted main file up (allows use of makefile), added makefile
changes on mpie_spectral.f90:
new structure, changed variable names, now using defgrad instead of disgrad, cleaned up, removed augmented Lagrange.
ToDo: Implement Augmented Lagrange again (but then a working version), implement Large strain, think about complex-to real-transform backwards, try to implement MP-support
2010-08-27 22:09:38 +05:30
|
|
|
|
|
2019-03-06 20:17:48 +05:30
|
|
|
|
posLastCommonSlash = 0
|
|
|
|
|
remainingSlashes = 0
|
|
|
|
|
a_cleaned = rectifyPath(trim(a)//'/')
|
|
|
|
|
b_cleaned = rectifyPath(b)
|
2012-02-21 21:34:16 +05:30
|
|
|
|
|
2019-03-06 20:17:48 +05:30
|
|
|
|
do i = 1, min(1024,len_trim(a_cleaned),len_trim(rectifyPath(b_cleaned)))
|
|
|
|
|
if (a_cleaned(i:i) /= b_cleaned(i:i)) exit
|
|
|
|
|
if (a_cleaned(i:i) == '/') posLastCommonSlash = i
|
|
|
|
|
enddo
|
|
|
|
|
do i = posLastCommonSlash+1,len_trim(a_cleaned)
|
|
|
|
|
if (a_cleaned(i:i) == '/') remainingSlashes = remainingSlashes + 1
|
|
|
|
|
enddo
|
2018-07-10 13:53:21 +05:30
|
|
|
|
|
2019-03-06 20:17:48 +05:30
|
|
|
|
makeRelativePath = repeat('..'//'/',remainingSlashes)//b_cleaned(posLastCommonSlash+1:len_trim(b_cleaned))
|
2011-08-01 23:40:55 +05:30
|
|
|
|
|
2012-03-06 20:22:48 +05:30
|
|
|
|
end function makeRelativePath
|
added fftw3 as fft(library will not versioned, should be in a linkable folder) , did some corrections on the code, splitted main file up (allows use of makefile), added makefile
changes on mpie_spectral.f90:
new structure, changed variable names, now using defgrad instead of disgrad, cleaned up, removed augmented Lagrange.
ToDo: Implement Augmented Lagrange again (but then a working version), implement Large strain, think about complex-to real-transform backwards, try to implement MP-support
2010-08-27 22:09:38 +05:30
|
|
|
|
|
2019-03-06 20:17:48 +05:30
|
|
|
|
|
2019-02-11 23:16:14 +05:30
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-09-13 14:35:42 +05:30
|
|
|
|
!> @brief Set global variable interface_SIGTERM to .true.
|
|
|
|
|
!> @details This function can be registered to catch signals send to the executable.
|
2019-02-11 23:16:14 +05:30
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-03-24 16:29:00 +05:30
|
|
|
|
subroutine catchSIGTERM(signal) bind(C)
|
|
|
|
|
|
|
|
|
|
integer(C_INT), value :: signal
|
2020-09-13 14:35:42 +05:30
|
|
|
|
interface_SIGTERM = .true.
|
2019-03-24 16:29:00 +05:30
|
|
|
|
|
2020-09-14 00:45:08 +05:30
|
|
|
|
print'(a,i2.2,a)', ' received signal ',signal, ', set SIGTERM=TRUE'
|
2019-03-24 16:29:00 +05:30
|
|
|
|
|
|
|
|
|
end subroutine catchSIGTERM
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-09-13 14:35:42 +05:30
|
|
|
|
!> @brief Set global variable interface_SIGTERM.
|
2019-03-24 16:29:00 +05:30
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-09-13 14:35:42 +05:30
|
|
|
|
subroutine interface_setSIGTERM(state)
|
2019-03-24 16:29:00 +05:30
|
|
|
|
|
|
|
|
|
logical, intent(in) :: state
|
2020-09-13 14:35:42 +05:30
|
|
|
|
interface_SIGTERM = state
|
2019-03-24 16:29:00 +05:30
|
|
|
|
|
2020-09-13 14:35:42 +05:30
|
|
|
|
end subroutine interface_setSIGTERM
|
2019-03-24 16:29:00 +05:30
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-09-13 14:35:42 +05:30
|
|
|
|
!> @brief Set global variable interface_SIGUSR1 to .true.
|
|
|
|
|
!> @details This function can be registered to catch signals send to the executable.
|
2019-03-24 16:29:00 +05:30
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
subroutine catchSIGUSR1(signal) bind(C)
|
2019-03-06 20:17:48 +05:30
|
|
|
|
|
|
|
|
|
integer(C_INT), value :: signal
|
2020-09-13 14:35:42 +05:30
|
|
|
|
interface_SIGUSR1 = .true.
|
2019-03-06 20:17:48 +05:30
|
|
|
|
|
2020-09-14 00:45:08 +05:30
|
|
|
|
print'(a,i2.2,a)', ' received signal ',signal, ', set SIGUSR1=TRUE'
|
2019-03-06 20:17:48 +05:30
|
|
|
|
|
2019-03-24 16:29:00 +05:30
|
|
|
|
end subroutine catchSIGUSR1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-09-13 14:35:42 +05:30
|
|
|
|
!> @brief Set global variable interface_SIGUSR.
|
2019-03-24 16:29:00 +05:30
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-09-13 14:35:42 +05:30
|
|
|
|
subroutine interface_setSIGUSR1(state)
|
2019-03-24 16:29:00 +05:30
|
|
|
|
|
|
|
|
|
logical, intent(in) :: state
|
2020-09-13 14:35:42 +05:30
|
|
|
|
interface_SIGUSR1 = state
|
2019-03-24 16:29:00 +05:30
|
|
|
|
|
2020-09-13 14:35:42 +05:30
|
|
|
|
end subroutine interface_setSIGUSR1
|
2019-03-06 20:17:48 +05:30
|
|
|
|
|
|
|
|
|
|
2019-02-11 23:16:14 +05:30
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-09-13 14:35:42 +05:30
|
|
|
|
!> @brief Set global variable interface_SIGUSR2 to .true.
|
|
|
|
|
!> @details This function can be registered to catch signals send to the executable.
|
2019-02-11 23:16:14 +05:30
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-03-24 16:29:00 +05:30
|
|
|
|
subroutine catchSIGUSR2(signal) bind(C)
|
2019-02-11 23:16:14 +05:30
|
|
|
|
|
2019-03-06 20:17:48 +05:30
|
|
|
|
integer(C_INT), value :: signal
|
2020-09-13 14:35:42 +05:30
|
|
|
|
interface_SIGUSR2 = .true.
|
2019-03-06 20:17:48 +05:30
|
|
|
|
|
2020-09-14 00:45:08 +05:30
|
|
|
|
print'(a,i2.2,a)', ' received signal ',signal, ', set SIGUSR2=TRUE'
|
2019-02-11 23:16:14 +05:30
|
|
|
|
|
2019-03-24 16:29:00 +05:30
|
|
|
|
end subroutine catchSIGUSR2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-09-13 14:35:42 +05:30
|
|
|
|
!> @brief Set global variable interface_SIGUSR2.
|
2019-03-24 16:29:00 +05:30
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-09-13 14:35:42 +05:30
|
|
|
|
subroutine interface_setSIGUSR2(state)
|
2019-03-24 16:29:00 +05:30
|
|
|
|
|
|
|
|
|
logical, intent(in) :: state
|
2020-09-13 14:35:42 +05:30
|
|
|
|
interface_SIGUSR2 = state
|
2019-03-24 16:29:00 +05:30
|
|
|
|
|
2020-09-13 14:35:42 +05:30
|
|
|
|
end subroutine interface_setSIGUSR2
|
2019-02-11 23:16:14 +05:30
|
|
|
|
|
2019-03-24 16:29:00 +05:30
|
|
|
|
|
2019-02-16 03:24:38 +05:30
|
|
|
|
end module
|