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
This commit is contained in:
parent
05568ef73b
commit
85febf0803
|
@ -0,0 +1,72 @@
|
||||||
|
INTEGER FFTW_R2HC
|
||||||
|
PARAMETER (FFTW_R2HC=0)
|
||||||
|
INTEGER FFTW_HC2R
|
||||||
|
PARAMETER (FFTW_HC2R=1)
|
||||||
|
INTEGER FFTW_DHT
|
||||||
|
PARAMETER (FFTW_DHT=2)
|
||||||
|
INTEGER FFTW_REDFT00
|
||||||
|
PARAMETER (FFTW_REDFT00=3)
|
||||||
|
INTEGER FFTW_REDFT01
|
||||||
|
PARAMETER (FFTW_REDFT01=4)
|
||||||
|
INTEGER FFTW_REDFT10
|
||||||
|
PARAMETER (FFTW_REDFT10=5)
|
||||||
|
INTEGER FFTW_REDFT11
|
||||||
|
PARAMETER (FFTW_REDFT11=6)
|
||||||
|
INTEGER FFTW_RODFT00
|
||||||
|
PARAMETER (FFTW_RODFT00=7)
|
||||||
|
INTEGER FFTW_RODFT01
|
||||||
|
PARAMETER (FFTW_RODFT01=8)
|
||||||
|
INTEGER FFTW_RODFT10
|
||||||
|
PARAMETER (FFTW_RODFT10=9)
|
||||||
|
INTEGER FFTW_RODFT11
|
||||||
|
PARAMETER (FFTW_RODFT11=10)
|
||||||
|
INTEGER FFTW_FORWARD
|
||||||
|
PARAMETER (FFTW_FORWARD=-1)
|
||||||
|
INTEGER FFTW_BACKWARD
|
||||||
|
PARAMETER (FFTW_BACKWARD=+1)
|
||||||
|
INTEGER FFTW_MEASURE
|
||||||
|
PARAMETER (FFTW_MEASURE=0)
|
||||||
|
INTEGER FFTW_DESTROY_INPUT
|
||||||
|
PARAMETER (FFTW_DESTROY_INPUT=1)
|
||||||
|
INTEGER FFTW_UNALIGNED
|
||||||
|
PARAMETER (FFTW_UNALIGNED=2)
|
||||||
|
INTEGER FFTW_CONSERVE_MEMORY
|
||||||
|
PARAMETER (FFTW_CONSERVE_MEMORY=4)
|
||||||
|
INTEGER FFTW_EXHAUSTIVE
|
||||||
|
PARAMETER (FFTW_EXHAUSTIVE=8)
|
||||||
|
INTEGER FFTW_PRESERVE_INPUT
|
||||||
|
PARAMETER (FFTW_PRESERVE_INPUT=16)
|
||||||
|
INTEGER FFTW_PATIENT
|
||||||
|
PARAMETER (FFTW_PATIENT=32)
|
||||||
|
INTEGER FFTW_ESTIMATE
|
||||||
|
PARAMETER (FFTW_ESTIMATE=64)
|
||||||
|
INTEGER FFTW_ESTIMATE_PATIENT
|
||||||
|
PARAMETER (FFTW_ESTIMATE_PATIENT=128)
|
||||||
|
INTEGER FFTW_BELIEVE_PCOST
|
||||||
|
PARAMETER (FFTW_BELIEVE_PCOST=256)
|
||||||
|
INTEGER FFTW_NO_DFT_R2HC
|
||||||
|
PARAMETER (FFTW_NO_DFT_R2HC=512)
|
||||||
|
INTEGER FFTW_NO_NONTHREADED
|
||||||
|
PARAMETER (FFTW_NO_NONTHREADED=1024)
|
||||||
|
INTEGER FFTW_NO_BUFFERING
|
||||||
|
PARAMETER (FFTW_NO_BUFFERING=2048)
|
||||||
|
INTEGER FFTW_NO_INDIRECT_OP
|
||||||
|
PARAMETER (FFTW_NO_INDIRECT_OP=4096)
|
||||||
|
INTEGER FFTW_ALLOW_LARGE_GENERIC
|
||||||
|
PARAMETER (FFTW_ALLOW_LARGE_GENERIC=8192)
|
||||||
|
INTEGER FFTW_NO_RANK_SPLITS
|
||||||
|
PARAMETER (FFTW_NO_RANK_SPLITS=16384)
|
||||||
|
INTEGER FFTW_NO_VRANK_SPLITS
|
||||||
|
PARAMETER (FFTW_NO_VRANK_SPLITS=32768)
|
||||||
|
INTEGER FFTW_NO_VRECURSE
|
||||||
|
PARAMETER (FFTW_NO_VRECURSE=65536)
|
||||||
|
INTEGER FFTW_NO_SIMD
|
||||||
|
PARAMETER (FFTW_NO_SIMD=131072)
|
||||||
|
INTEGER FFTW_NO_SLOW
|
||||||
|
PARAMETER (FFTW_NO_SLOW=262144)
|
||||||
|
INTEGER FFTW_NO_FIXED_RADIX_LARGE_N
|
||||||
|
PARAMETER (FFTW_NO_FIXED_RADIX_LARGE_N=524288)
|
||||||
|
INTEGER FFTW_ALLOW_PRUNING
|
||||||
|
PARAMETER (FFTW_ALLOW_PRUNING=1048576)
|
||||||
|
INTEGER FFTW_WISDOM_ONLY
|
||||||
|
PARAMETER (FFTW_WISDOM_ONLY=2097152)
|
|
@ -0,0 +1,76 @@
|
||||||
|
cpspectral.out: mpie_spectral.o CPFEM.a
|
||||||
|
ifort -o cpspectral.out mpie_spectral.o CPFEM.a fft.o libfftw3.a constitutive.a advanced.a basics.a
|
||||||
|
|
||||||
|
mpie_spectral.o: mpie_spectral.f90 CPFEM.o
|
||||||
|
ifort -c -heap-arrays 500000000 mpie_spectral.f90
|
||||||
|
|
||||||
|
CPFEM.a: CPFEM.o
|
||||||
|
ar rc CPFEM.a homogenization.o homogenization_RGC.o homogenization_isostrain.o crystallite.o CPFEM.o constitutive.o
|
||||||
|
|
||||||
|
CPFEM.o: CPFEM.f90 homogenization.o
|
||||||
|
ifort -c -heap-arrays 500000000 CPFEM.f90
|
||||||
|
homogenization.o: homogenization.f90 homogenization_isostrain.o homogenization_RGC.o crystallite.o
|
||||||
|
ifort -c -heap-arrays 500000000 homogenization.f90
|
||||||
|
homogenization_RGC.o: homogenization_RGC.f90 constitutive.a
|
||||||
|
ifort -c -heap-arrays 500000000 homogenization_RGC.f90
|
||||||
|
homogenization_isostrain.o: homogenization_isostrain.f90 basics.a advanced.a
|
||||||
|
ifort -c -heap-arrays 500000000 homogenization_isostrain.f90
|
||||||
|
crystallite.o: crystallite.f90 constitutive.a
|
||||||
|
ifort -c -heap-arrays 500000000 crystallite.f90
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
constitutive.a: constitutive.o
|
||||||
|
ar rc constitutive.a constitutive.o constitutive_titanmod.o constitutive_nonlocal.o constitutive_dislotwin.o constitutive_j2.o constitutive_phenopowerlaw.o basics.a advanced.a
|
||||||
|
|
||||||
|
constitutive.o: constitutive.f90 constitutive_titanmod.o constitutive_nonlocal.o constitutive_dislotwin.o constitutive_j2.o constitutive_phenopowerlaw.o
|
||||||
|
ifort -c -heap-arrays 500000000 constitutive.f90
|
||||||
|
|
||||||
|
constitutive_titanmod.o: constitutive_titanmod.f90 basics.a advanced.a
|
||||||
|
ifort -c -heap-arrays 500000000 constitutive_titanmod.f90
|
||||||
|
|
||||||
|
constitutive_nonlocal.o: constitutive_nonlocal.f90 basics.a advanced.a
|
||||||
|
ifort -c -heap-arrays 500000000 constitutive_nonlocal.f90
|
||||||
|
|
||||||
|
constitutive_dislotwin.o: constitutive_dislotwin.f90 basics.a advanced.a
|
||||||
|
ifort -c -heap-arrays 500000000 constitutive_dislotwin.f90
|
||||||
|
|
||||||
|
constitutive_j2.o: constitutive_j2.f90 basics.a advanced.a
|
||||||
|
ifort -c -heap-arrays 500000000 constitutive_j2.f90
|
||||||
|
|
||||||
|
constitutive_phenopowerlaw.o: constitutive_phenopowerlaw.f90 basics.a advanced.a
|
||||||
|
ifort -c -heap-arrays 500000000 constitutive_phenopowerlaw.f90
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
advanced.a: lattice.o
|
||||||
|
ar rc advanced.a FEsolving.o mesh.o material.o lattice.o
|
||||||
|
|
||||||
|
lattice.o: lattice.f90 material.o
|
||||||
|
ifort -c -heap-arrays 500000000 lattice.f90
|
||||||
|
material.o: material.f90 mesh.o
|
||||||
|
ifort -c -heap-arrays 500000000 material.f90
|
||||||
|
mesh.o: mesh.f90 FEsolving.o
|
||||||
|
ifort -c -heap-arrays 500000000 mesh.f90
|
||||||
|
FEsolving.o: FEsolving.f90 basics.a
|
||||||
|
ifort -c -heap-arrays 500000000 FEsolving.f90
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
basics.a: debug.o math.o
|
||||||
|
ar rc basics.a debug.o math.o numerics.o IO.o mpie_spectral_interface.o prec.o
|
||||||
|
|
||||||
|
debug.o: debug.f90 numerics.o
|
||||||
|
ifort -c debug.f90
|
||||||
|
|
||||||
|
math.o: math.f90 numerics.o
|
||||||
|
ifort -c math.f90
|
||||||
|
|
||||||
|
numerics.o: numerics.f90 IO.o
|
||||||
|
ifort -c numerics.f90
|
||||||
|
IO.o: IO.f90 mpie_spectral_interface.o
|
||||||
|
ifort -c IO.f90
|
||||||
|
mpie_spectral_interface.o: mpie_spectral_interface.f90 prec.o
|
||||||
|
ifort -c mpie_spectral_interface.f90
|
||||||
|
prec.o: prec.f90
|
||||||
|
ifort -c prec.f90
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,183 @@
|
||||||
|
!* $Id: mpie_spectral_interface.f90 605 2010-07-07 09:10:54Z MPIE\m.diehl $
|
||||||
|
!********************************************************************
|
||||||
|
|
||||||
|
MODULE mpie_interface
|
||||||
|
use prec, only: pInt, pReal
|
||||||
|
character(len=64), parameter :: FEsolver = 'Spectral'
|
||||||
|
character(len=5), parameter :: InputFileExtension = '.mesh'
|
||||||
|
|
||||||
|
CONTAINS
|
||||||
|
|
||||||
|
!********************************************************************
|
||||||
|
! initialize interface module
|
||||||
|
!
|
||||||
|
!********************************************************************
|
||||||
|
subroutine mpie_interface_init()
|
||||||
|
|
||||||
|
write(6,*)
|
||||||
|
write(6,*) '<<<+- mpie_spectral init -+>>>'
|
||||||
|
write(6,*) '$Id: mpie_spectral_interface.f90 605 2010-07-07 09:10:54Z MPIE\m.diehl $'
|
||||||
|
write(6,*)
|
||||||
|
|
||||||
|
return
|
||||||
|
endsubroutine
|
||||||
|
|
||||||
|
!********************************************************************
|
||||||
|
! extract working directory from loadcase file
|
||||||
|
! possibly based on current working dir
|
||||||
|
!********************************************************************
|
||||||
|
function getSolverWorkingDirectoryName()
|
||||||
|
|
||||||
|
implicit none
|
||||||
|
|
||||||
|
character(len=1024) cwd,outname,getSolverWorkingDirectoryName
|
||||||
|
character(len=*), parameter :: pathSep = achar(47)//achar(92) ! forwardslash, backwardslash
|
||||||
|
|
||||||
|
call getarg(2,outname) ! path to loadFile
|
||||||
|
|
||||||
|
if (scan(outname,pathSep) == 1) then ! absolute path given as command line argument
|
||||||
|
getSolverWorkingDirectoryName = outname(1:scan(outname,pathSep,back=.true.))
|
||||||
|
else
|
||||||
|
call getcwd(cwd)
|
||||||
|
getSolverWorkingDirectoryName = trim(cwd)//'/'//outname(1:scan(outname,pathSep,back=.true.))
|
||||||
|
endif
|
||||||
|
|
||||||
|
getSolverWorkingDirectoryName = rectifyPath(getSolverWorkingDirectoryName)
|
||||||
|
|
||||||
|
return
|
||||||
|
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
!********************************************************************
|
||||||
|
! basename of meshfile from command line arguments
|
||||||
|
!
|
||||||
|
!********************************************************************
|
||||||
|
function getSolverJobName()
|
||||||
|
|
||||||
|
use prec, only: pInt
|
||||||
|
|
||||||
|
implicit none
|
||||||
|
|
||||||
|
character(1024) getSolverJobName, outName, cwd
|
||||||
|
character(len=*), parameter :: pathSep = achar(47)//achar(92) ! /, \
|
||||||
|
integer(pInt) posExt,posSep
|
||||||
|
|
||||||
|
getSolverJobName = ''
|
||||||
|
|
||||||
|
call getarg(1,outName)
|
||||||
|
posExt = scan(outName,'.',back=.true.)
|
||||||
|
posSep = scan(outName,pathSep,back=.true.)
|
||||||
|
|
||||||
|
if (posExt <= posSep) posExt = len_trim(outName)+1 ! no extension present
|
||||||
|
getSolverJobName = outName(1:posExt-1) ! path to mesh file (excl. extension)
|
||||||
|
|
||||||
|
if (scan(getSolverJobName,pathSep) /= 1) then ! relative path given as command line argument
|
||||||
|
call getcwd(cwd)
|
||||||
|
getSolverJobName = rectifyPath(trim(cwd)//'/'//getSolverJobName)
|
||||||
|
else
|
||||||
|
getSolverJobName = rectifyPath(getSolverJobName)
|
||||||
|
endif
|
||||||
|
|
||||||
|
getSolverJobName = makeRelativePath(getSolverWorkingDirectoryName(),&
|
||||||
|
getSolverJobName)
|
||||||
|
return
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
|
||||||
|
!********************************************************************
|
||||||
|
! relative path of loadcase from command line arguments
|
||||||
|
!
|
||||||
|
!********************************************************************
|
||||||
|
function getLoadcaseName()
|
||||||
|
|
||||||
|
use prec, only: pInt
|
||||||
|
|
||||||
|
implicit none
|
||||||
|
|
||||||
|
character(len=1024) getLoadcaseName, outName, cwd
|
||||||
|
character(len=*), parameter :: pathSep = achar(47)//achar(92) ! /, \
|
||||||
|
integer(pInt) posExt,posSep
|
||||||
|
posExt = 0
|
||||||
|
|
||||||
|
call getarg(2,getLoadcaseName)
|
||||||
|
posExt = scan(getLoadcaseName,'.',back=.true.)
|
||||||
|
posSep = scan(getLoadcaseName,pathSep,back=.true.)
|
||||||
|
|
||||||
|
if (posExt <= posSep) getLoadcaseName = trim(getLoadcaseName)//('.load') ! no extension present
|
||||||
|
if (scan(getLoadcaseName,pathSep) /= 1) then ! relative path given as command line argument
|
||||||
|
call getcwd(cwd)
|
||||||
|
getLoadcaseName = rectifyPath(trim(cwd)//'/'//getLoadcaseName)
|
||||||
|
else
|
||||||
|
getLoadcaseName = rectifyPath(getLoadcaseName)
|
||||||
|
endif
|
||||||
|
|
||||||
|
getLoadcaseName = makeRelativePath(getSolverWorkingDirectoryName(),&
|
||||||
|
getLoadcaseName)
|
||||||
|
return
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
|
||||||
|
!********************************************************************
|
||||||
|
! remove ../ and ./ from path
|
||||||
|
!
|
||||||
|
!********************************************************************
|
||||||
|
function rectifyPath(path)
|
||||||
|
|
||||||
|
use prec, only: pInt
|
||||||
|
|
||||||
|
implicit none
|
||||||
|
|
||||||
|
character(len=*) path
|
||||||
|
character(len=len_trim(path)) rectifyPath
|
||||||
|
integer(pInt) i,j,k,l
|
||||||
|
|
||||||
|
!remove ./ from path
|
||||||
|
l = len_trim(path)
|
||||||
|
rectifyPath = path
|
||||||
|
do i = l,2,-1
|
||||||
|
if ( rectifyPath(i-1:i) == './' .and. rectifyPath(i-2:i-2) /= '.' ) &
|
||||||
|
rectifyPath(i-1:l) = rectifyPath(i+1:l)//' '
|
||||||
|
enddo
|
||||||
|
|
||||||
|
!remove ../ and corresponding directory from rectifyPath
|
||||||
|
l = len_trim(rectifyPath)
|
||||||
|
i = index(rectifyPath(i:l),'../')
|
||||||
|
j = 0_pInt
|
||||||
|
do while (i > j)
|
||||||
|
j = scan(rectifyPath(:i-2),'/',back=.true.)
|
||||||
|
rectifyPath(j+1:l) = rectifyPath(i+3:l)//repeat(' ',2+i-j)
|
||||||
|
i = j+index(rectifyPath(j+1:l),'../')
|
||||||
|
enddo
|
||||||
|
if(len_trim(rectifyPath) == 0) rectifyPath = '/'
|
||||||
|
return
|
||||||
|
endfunction rectifyPath
|
||||||
|
|
||||||
|
|
||||||
|
!********************************************************************
|
||||||
|
! relative path from absolute a to absolute b
|
||||||
|
!
|
||||||
|
!********************************************************************
|
||||||
|
function makeRelativePath(a,b)
|
||||||
|
|
||||||
|
use prec, only: pInt
|
||||||
|
|
||||||
|
implicit none
|
||||||
|
|
||||||
|
character (len=*) :: a,b
|
||||||
|
character (len=1024) :: makeRelativePath
|
||||||
|
integer(pInt) i,posLastCommonSlash,remainingSlashes
|
||||||
|
|
||||||
|
posLastCommonSlash = 0
|
||||||
|
remainingSlashes = 0
|
||||||
|
do i = 1,min(1024,len_trim(a),len_trim(b))
|
||||||
|
if (a(i:i) /= b(i:i)) exit
|
||||||
|
if (a(i:i) == '/') posLastCommonSlash = i
|
||||||
|
enddo
|
||||||
|
do i = posLastCommonSlash+1,len_trim(a)
|
||||||
|
if (a(i:i) == '/') remainingSlashes = remainingSlashes + 1
|
||||||
|
enddo
|
||||||
|
makeRelativePath = repeat('../',remainingSlashes)//b(posLastCommonSlash+1:len_trim(b))
|
||||||
|
return
|
||||||
|
endfunction makeRelativePath
|
||||||
|
|
||||||
|
END MODULE
|
Loading…
Reference in New Issue