changed numerics.f90 back to the old openmp statement as this doesn't seem to cause the problem and is standard conforming
corrected typo in constitutive_j2.f90 that might cause abaqus to crash now running 20 tests of abaqus in order to have a decent statistic about the crash behavior improved abaqus_v6.env
This commit is contained in:
parent
84e3f94424
commit
8e3b547cbd
|
@ -282,7 +282,7 @@ subroutine constitutive_j2_init(myFile)
|
||||||
end select
|
end select
|
||||||
|
|
||||||
if (mySize > 0_pInt) then ! any meaningful output found
|
if (mySize > 0_pInt) then ! any meaningful output found
|
||||||
constitutive_j2_sizePostResult(j,i) = mySize
|
constitutive_j2_sizePostResult(o,i) = mySize
|
||||||
constitutive_j2_sizePostResults(i) = &
|
constitutive_j2_sizePostResults(i) = &
|
||||||
constitutive_j2_sizePostResults(i) + mySize
|
constitutive_j2_sizePostResults(i) + mySize
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -112,11 +112,11 @@ subroutine numerics_init
|
||||||
IO_floatValue, &
|
IO_floatValue, &
|
||||||
IO_intValue, &
|
IO_intValue, &
|
||||||
IO_warning
|
IO_warning
|
||||||
#ifdef Spectral ! Use the standard conforming module file for omp if using the spectral solver
|
#ifndef Marc ! Use the standard conforming module file for omp if using the spectral solver
|
||||||
!$ use OMP_LIB, only: omp_set_num_threads
|
!$ use OMP_LIB, only: omp_set_num_threads
|
||||||
#endif
|
#endif
|
||||||
implicit none
|
implicit none
|
||||||
#ifndef Spectral ! use the non F90 standard include file because some versions of Marc and Abaqus crash when using the module
|
#ifdef Marc ! use the non F90 standard include file because some versions of Marc and Abaqus crash when using the module
|
||||||
!$ include "omp_lib.h"
|
!$ include "omp_lib.h"
|
||||||
#endif
|
#endif
|
||||||
integer(pInt), parameter :: fileunit = 300_pInt ,&
|
integer(pInt), parameter :: fileunit = 300_pInt ,&
|
||||||
|
|
Loading…
Reference in New Issue