more LF, Id, and executable status changes
This commit is contained in:
parent
c254f87814
commit
188002f16e
|
@ -1,4 +1,4 @@
|
||||||
# $Id: material.py 1507 2012-05-24 16:00:32Z MPIE\t.elachkar $
|
# $Id$
|
||||||
import re
|
import re
|
||||||
|
|
||||||
class Material():
|
class Material():
|
||||||
|
|
17
lib/pathinfo
17
lib/pathinfo
|
@ -1,17 +0,0 @@
|
||||||
# $Id$
|
|
||||||
# possible options are
|
|
||||||
# IMKL base installation directory of Intel Math Kernel Library
|
|
||||||
# ACML base installation directory of AMD Core Math Library
|
|
||||||
# LAPACK base installation directory of (system) LAPACK Library
|
|
||||||
# MSC base installation directory of MSC.Marc/Mentat
|
|
||||||
# FFTW base installation directory of Fastest Fourier Transform in the West library
|
|
||||||
# A relative path (./like/this) starts from $DAMASK_ROOT/lib/
|
|
||||||
# Do NOT add any trailing /lib/ to the end
|
|
||||||
# of the base installation path---this will be done automatically
|
|
||||||
# Out of IMKL, ACML, LAPACK the first defined value is used to access BLAS functionality
|
|
||||||
|
|
||||||
IMKL
|
|
||||||
ACML /opt/acml5.3.0
|
|
||||||
LAPACK /usr
|
|
||||||
FFTW /usr/local
|
|
||||||
#MSC /msc
|
|
|
@ -1,19 +0,0 @@
|
||||||
! Copyright 2011-2013 Max-Planck-Institut für Eisenforschung GmbH
|
|
||||||
!
|
|
||||||
! This file is part of DAMASK,
|
|
||||||
! the Düsseldorf Advanced MAterial Simulation Kit.
|
|
||||||
!
|
|
||||||
! DAMASK is free software: you can redistribute it and/or modify
|
|
||||||
! it under the terms of the GNU General Public License as published by
|
|
||||||
! the Free Software Foundation, either version 3 of the License, or
|
|
||||||
! (at your option) any later version.
|
|
||||||
!
|
|
||||||
! DAMASK is distributed in the hope that it will be useful,
|
|
||||||
! but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
! GNU General Public License for more details.
|
|
||||||
!
|
|
||||||
! You should have received a copy of the GNU General Public License
|
|
||||||
! along with DAMASK. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
!
|
|
||||||
!##############################################################
|
|
|
@ -44,7 +44,7 @@ parser = OptionParser(option_class=extendableOption, usage='%prog [options] [fil
|
||||||
Calculates the standard deviation of data in blocks of size 'packing' thus reducing the former resolution
|
Calculates the standard deviation of data in blocks of size 'packing' thus reducing the former resolution
|
||||||
to resolution/packing. (Requires numpy.)
|
to resolution/packing. (Requires numpy.)
|
||||||
|
|
||||||
""" + string.replace('$Id: averageDown.py 1857 2012-10-31 10:06:11Z MPIE\m.diehl $','\n','\\n')
|
""" + string.replace('$Id$','\n','\\n')
|
||||||
)
|
)
|
||||||
|
|
||||||
parser.add_option('-c','--coordinates', dest='coords', type='string',\
|
parser.add_option('-c','--coordinates', dest='coords', type='string',\
|
||||||
|
@ -97,7 +97,7 @@ for file in files:
|
||||||
|
|
||||||
table = damask.ASCIItable(file['input'],file['output'],False) # make unbuffered ASCII_table
|
table = damask.ASCIItable(file['input'],file['output'],False) # make unbuffered ASCII_table
|
||||||
table.head_read() # read ASCII header info
|
table.head_read() # read ASCII header info
|
||||||
table.info_append(string.replace('$Id: averageDown.py 1857 2012-10-31 10:06:11Z MPIE\m.diehl $','\n','\\n') + \
|
table.info_append(string.replace('$Id$','\n','\\n') + \
|
||||||
'\t' + ' '.join(sys.argv[1:]))
|
'\t' + ' '.join(sys.argv[1:]))
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ import os,sys,string,re,numpy,vtk
|
||||||
import damask
|
import damask
|
||||||
from optparse import OptionParser, OptionGroup, Option, SUPPRESS_HELP
|
from optparse import OptionParser, OptionGroup, Option, SUPPRESS_HELP
|
||||||
|
|
||||||
scriptID = '$Id: vtk_addPointcloudData.py 2770 2013-12-09 15:58:35Z p.eisenlohr $'
|
scriptID = '$Id$'
|
||||||
scriptName = scriptID.split()[1]
|
scriptName = scriptID.split()[1]
|
||||||
|
|
||||||
#--------------------------------------------------------------------------------------------------
|
#--------------------------------------------------------------------------------------------------
|
||||||
|
|
|
@ -12,7 +12,7 @@ from vtk import *
|
||||||
# --- input parsing
|
# --- input parsing
|
||||||
|
|
||||||
parser = OptionParser(usage='%prog [options] vtkfile', description = """
|
parser = OptionParser(usage='%prog [options] vtkfile', description = """
|
||||||
""" + string.replace('$Id: $','\n','\\n')
|
""" + string.replace('$Id$','\n','\\n')
|
||||||
)
|
)
|
||||||
|
|
||||||
parser.add_option('-v','--vector', nargs=3, dest='vector', type='string', \
|
parser.add_option('-v','--vector', nargs=3, dest='vector', type='string', \
|
||||||
|
|
|
@ -4,7 +4,7 @@ import os,sys,string,re,numpy,vtk
|
||||||
import damask
|
import damask
|
||||||
from optparse import OptionParser, OptionGroup, Option, SUPPRESS_HELP
|
from optparse import OptionParser, OptionGroup, Option, SUPPRESS_HELP
|
||||||
|
|
||||||
scriptID = '$Id: vtk_pointcloud.py 2748 2013-11-26 20:24:40Z MPIE\p.eisenlohr $'
|
scriptID = '$Id$'
|
||||||
scriptName = scriptID.split()[1]
|
scriptName = scriptID.split()[1]
|
||||||
|
|
||||||
#--------------------------------------------------------------------------------------------------
|
#--------------------------------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue