2011-03-29 19:19:50 +05:30
|
|
|
#
|
2011-08-26 12:59:55 +05:30
|
|
|
# DAMASK Abaqus Environment File
|
|
|
|
#
|
2011-03-29 19:19:50 +05:30
|
|
|
# ------------------------------------
|
2012-05-16 12:27:37 +05:30
|
|
|
# originally taken from Abaqus ver. 6.11.1
|
2011-04-06 15:10:39 +05:30
|
|
|
#
|
2011-03-29 19:19:50 +05:30
|
|
|
#
|
|
|
|
# Linux (Opteron/EM64T) Settings:
|
|
|
|
#
|
|
|
|
# Compile and Link command for user subroutines.
|
|
|
|
# Compile_cpp and link_exe for Abaqus make utility.
|
|
|
|
#
|
|
|
|
import os, re, glob, driverUtils
|
2016-02-03 00:25:55 +05:30
|
|
|
from damask import version as DAMASKVERSION
|
2011-03-29 19:19:50 +05:30
|
|
|
|
2012-05-16 12:27:37 +05:30
|
|
|
# Use the version in $PATH
|
|
|
|
fortCmd = "ifort"
|
2011-03-29 19:19:50 +05:30
|
|
|
|
2012-10-05 22:52:45 +05:30
|
|
|
# -free to use free-format FORTRAN 90 syntax
|
|
|
|
# -O <0-3> optimization level
|
|
|
|
# -fpp use FORTRAN preprocessor on source code
|
|
|
|
# -openmp build with openMP support
|
|
|
|
# -w90 -w95 suppress messages about use of non-standard Fortran (previous version of abaqus_v6.env only)
|
2015-01-15 14:12:47 +05:30
|
|
|
# -WB turn a compile-time bounds check into a warning (previous version of abaqus_v6.env only)
|
2012-10-05 22:52:45 +05:30
|
|
|
# -mP2OPT_hpo_vec_divbyzero=F inofficial compiler switch, proposed by abaqus but highly dubios (previous version of abaqus_v6.env only)
|
|
|
|
# -ftz flush underflow to zero
|
2013-01-28 21:00:51 +05:30
|
|
|
# -diag-disable 5268 disable warnings about line length > 132 (only comments there anyway)
|
2012-10-05 22:52:45 +05:30
|
|
|
# -implicitnone assume no implicit types (e.g. i for integer)
|
|
|
|
# -assume byterecl count record length in bytes
|
|
|
|
# -real-size 64 -DFLOAT=8 assume size of real to be 8 bytes, matches our definition of pReal
|
|
|
|
# -integer-size 32 -DINT=4 assume size of integer to be 4 bytes, matches our definition of pInt
|
2011-08-26 12:59:55 +05:30
|
|
|
|
2014-04-29 22:13:59 +05:30
|
|
|
compile_fortran = (fortCmd + " -c -fPIC -auto -shared-intel " +
|
2017-03-07 15:14:39 +05:30
|
|
|
"-I%I -free -O1 -fpp -openmp " +
|
2013-01-28 21:00:51 +05:30
|
|
|
"-ftz -diag-disable 5268 " +
|
2015-09-05 21:56:55 +05:30
|
|
|
"-implicitnone -assume byterecl -stand f08 -standard-semantics " +
|
2016-02-03 00:25:55 +05:30
|
|
|
"-real-size 64 -integer-size 32 -DFLOAT=8 -DINT=4 " +
|
2016-02-03 04:03:21 +05:30
|
|
|
'-DDAMASKVERSION=\\\"%s\\\"'%DAMASKVERSION)
|
2011-03-29 19:19:50 +05:30
|
|
|
|
2013-03-21 22:54:58 +05:30
|
|
|
# Abaqus/CAE will generate an input file without parts and assemblies.
|
2011-03-29 19:19:50 +05:30
|
|
|
cae_no_parts_input_file=ON
|
2013-03-21 22:54:58 +05:30
|
|
|
# Both the Abaqus/Explicit packager and analysis are run in double precision.
|
|
|
|
double_precision=BOTH
|
|
|
|
# The user will not be asked whether old job files of the same name should be deleted.
|
|
|
|
ask_delete=OFF
|
2011-03-29 19:19:50 +05:30
|
|
|
|
2011-05-26 15:08:48 +05:30
|
|
|
# You can compile DAMASK into a library to be used with abaqus
|
|
|
|
# it saves you from compiling the subroutine for each job
|
|
|
|
# in this case you do not have to specify a usersubroutine file
|
|
|
|
# however if you still do, the compiled version will override that in the library
|
|
|
|
# Procedure:
|
|
|
|
# 1. create a library directory, e.g. abqlib, in your prefered location
|
|
|
|
# 2. build the library replacing your_prefered_location/abqlib with the correct path to the directory created in 1.:
|
|
|
|
# abaqus make -l DAMASK_abaqus_std.f -dir your_prefered_location/abqlib
|
|
|
|
# abaqus make -l DAMASK_abaqus_exp.f -dir your_prefered_location/abqlib
|
|
|
|
# 3. uncomment the next line after replacing your_prefered_location/abqlib with the correct path to the directory created in 1.
|
|
|
|
# usub_lib_dir='your_prefered_location/abqlib'
|
|
|
|
|
2011-03-29 19:19:50 +05:30
|
|
|
# Remove the temporary names from the namespace
|
|
|
|
del fortCmd
|
2017-03-06 03:17:28 +05:30
|
|
|
del DAMASKVERSION
|