aboutsummaryrefslogtreecommitdiff
path: root/french
diff options
context:
space:
mode:
authorThierry Thomas <thierry@FreeBSD.org>2006-07-06 19:44:19 +0000
committerThierry Thomas <thierry@FreeBSD.org>2006-07-06 19:44:19 +0000
commitf576ae87b1b25e70bab4f98bd8e3c489f4349b2a (patch)
treee764155bc4dd0c2fb55e84bc2fe5c15466fdca21 /french
parent97b152a1ef8c4e1c9694bfff002de5a2f986f532 (diff)
downloadports-f576ae87b1b25e70bab4f98bd8e3c489f4349b2a.tar.gz
ports-f576ae87b1b25e70bab4f98bd8e3c489f4349b2a.zip
Notes
Diffstat (limited to 'french')
-rw-r--r--french/aster/Makefile27
-rw-r--r--french/aster/distinfo6
-rw-r--r--french/aster/files/patch-products.py20
-rw-r--r--french/aster/files/patch-setup.py16
-rw-r--r--french/aster/pkg-plist594
5 files changed, 320 insertions, 343 deletions
diff --git a/french/aster/Makefile b/french/aster/Makefile
index a34748cef197..7d69179811d6 100644
--- a/french/aster/Makefile
+++ b/french/aster/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= aster
-DISTVERSION= 8.2.0-4
-PORTREVISION= 2
+DISTVERSION= 8.3.0-1
CATEGORIES= french cad python
MASTER_SITES= http://www.code-aster.org/FICHIERS/
DISTNAME= ${PORTNAME}-full-src-${DISTVERSION}
@@ -54,7 +53,7 @@ USE_BISON= yes
HAS_CONFIGURE= yes
REINPLACE_ARGS= -i ""
-WRKSRC= ${WRKDIR}/${PORTNAME}-src-${PORTVERSION:R}
+WRKSRC= ${WRKDIR}/${PORTNAME}-full-src-${PORTVERSION:R}
PLIST_SUB= ASTERDIR=${PORTNAME}/${vaster} TOOLDIR=${PORTNAME}/${vaster}/outils
PKGMESSAGE= ${WRKDIR}/pkg-message
.if defined(WITHOUT_ASTK_CLI)
@@ -125,6 +124,7 @@ BUILD_DEPENDS+= ${LOCALBASE}/lib/libscotch.a:${PORTSDIR}/cad/scotch
WITH_MUMPS= yes
.endif
.if defined(WITH_MUMPS)
+WITH_MPI= yes # For the FETI solver
F90= gfortran41
FC= ${LOCALBASE}/bin/${F90}
DLIBF90!= ${DIRNAME} `${LDCONFIG} -r | ${GREP} gfortran | ${AWK} '{print $$3}'`
@@ -132,6 +132,11 @@ BUILD_DEPENDS+= ${LOCALBASE}/lib/libcmumps.a:${PORTSDIR}/math/mumps \
${FC}:${PORTSDIR}/lang/gfortran
.endif
+.if defined(WITH_MPI)
+BUILD_DEPENDS+= ${HOME_MPI}/include/mpif.h:${PORTSDIR}/net/mpich
+HOME_MPI= ${LOCALBASE}/mpich
+.endif
+
.if !${OSVERSION} < 500039
F77?= f77
.endif
@@ -221,6 +226,8 @@ pre-configure:
@${ECHO_CMD} "_install_Numeric = False" >> ${WRKSRC}/setup.cfg
@${ECHO_CMD} "_install_gmsh = False" >> ${WRKSRC}/setup.cfg
@${ECHO_CMD} "_install_gibi = False" >> ${WRKSRC}/setup.cfg
+ @${ECHO_CMD} "_install_grace = False" >> ${WRKSRC}/setup.cfg
+ @${ECHO_CMD} "XMGRACE = 'xmgrace'" >> ${WRKSRC}/setup.cfg
@${ECHO_CMD} "_install_homard = False" >> ${WRKSRC}/setup.cfg
@${ECHO_CMD} "_install_eficas = False" >> ${WRKSRC}/setup.cfg
@${ECHO_CMD} "_install_astk = False" >> ${WRKSRC}/setup.cfg
@@ -240,6 +247,11 @@ pre-configure:
@${ECHO_CMD} "SYSLIB='-Xlinker -export-dynamic ${PTHREAD_LIBS} -lutil -lm -lz -lg2c'" \
>> ${WRKSRC}/setup.cfg
.endif
+.if defined(WITH_MPI)
+ @${ECHO_CMD} "HOME_MPI = '${HOME_MPI}'" >> ${WRKSRC}/setup.cfg
+.else
+ @${ECHO_CMD} "HOME_MPI = ''" >> ${WRKSRC}/setup.cfg
+.endif
@${ECHO_CMD} "HOME_ZMAT = ''" >> ${WRKSRC}/setup.cfg
@${ECHO_CMD} "HOME_HDF='${hdf_dir}'" >> ${WRKSRC}/setup.cfg
@${ECHO_CMD} "HOME_MED='${LOCALBASE}'" >> ${WRKSRC}/setup.cfg
@@ -255,13 +267,13 @@ pre-configure:
@${ECHO_CMD} "LDFLAGS='-v ${LDFLAGS}'" >> ${WRKSRC}/setup.cfg
@${ECHO_CMD} "FFLAGS='-c ${FFLAGS} -D${FLAGARCH}'" >> ${WRKSRC}/setup.cfg
@${ECHO_CMD} "FFLAGS_DBG='-c -g -O -D${FLAGARCH}'" >> ${WRKSRC}/setup.cfg
- @${ECHO_CMD} "F90FLAGS='-c ${FFLAGS} -ff2c -D${FLAGARCH}'" \
+ @${ECHO_CMD} "F90FLAGS='-c ${FFLAGS} -ff2c -D${FLAGARCH} -I${LOCALBASE}/include -I${HOME_MPI}/include'" \
>> ${WRKSRC}/setup.cfg
- @${ECHO_CMD} "F90FLAGS_DBG='-c -g -O -ff2c -D${FLAGARCH}'" \
+ @${ECHO_CMD} "F90FLAGS_DBG='-c -g -O -ff2c -D${FLAGARCH} -I${LOCALBASE}/include -I${HOME_MPI}/include'" \
>> ${WRKSRC}/setup.cfg
- @${ECHO_CMD} "CFLAGS='-c ${CFLAGS} ${PTHREAD_CFLAGS} -D${FLAGARCH}'" \
+ @${ECHO_CMD} "CFLAGS='-c ${CFLAGS} ${PTHREAD_CFLAGS} -D${FLAGARCH} -I${LOCALBASE}/include'" \
>> ${WRKSRC}/setup.cfg
- @${ECHO_CMD} "CFLAGS_DBG='-c -g -O -pipe ${PTHREAD_CFLAGS} -D${FLAGARCH}'" \
+ @${ECHO_CMD} "CFLAGS_DBG='-c -g -O -pipe ${PTHREAD_CFLAGS} -D${FLAGARCH} -I${LOCALBASE}/include'" \
>> ${WRKSRC}/setup.cfg
do-configure:
@@ -341,6 +353,7 @@ regression-test: install
${LOCALBASE}/aster/ASTK/ASTK_SERV/bin/as_run forma01a.export)
@${ECHO_CMD} Note: homard must be installed to run some steps succesfully.
(cd ${inst_dir}; \
+ HDF5_DISABLE_VERSION_CHECK=1 \
${LOCALBASE}/aster/ASTK/ASTK_SERV/bin/as_run astout.export)
@${ECHO_CMD} Check ${inst_dir}/astest/*.erre
.endif
diff --git a/french/aster/distinfo b/french/aster/distinfo
index 87d6796663cd..4f095c3f18ff 100644
--- a/french/aster/distinfo
+++ b/french/aster/distinfo
@@ -1,3 +1,3 @@
-MD5 (aster-full-src-8.2.0-4.tar.gz) = ae5c60dfa8fb929b754a88eb9d74a82a
-SHA256 (aster-full-src-8.2.0-4.tar.gz) = 0364b345b344c98267dc7e6a70430ba960e1832417a5b06f026cab943eaae59c
-SIZE (aster-full-src-8.2.0-4.tar.gz) = 104614741
+MD5 (aster-full-src-8.3.0-1.tar.gz) = 5cfd3b519e0c2819b335b670ee2a7d55
+SHA256 (aster-full-src-8.3.0-1.tar.gz) = ecd7bbdbb18bacbc8652e51006d6440cc02edf5a60f5408f4f3352c8e43f8b84
+SIZE (aster-full-src-8.3.0-1.tar.gz) = 127087406
diff --git a/french/aster/files/patch-products.py b/french/aster/files/patch-products.py
index 85e22b6dd8ec..725e25f52b8e 100644
--- a/french/aster/files/patch-products.py
+++ b/french/aster/files/patch-products.py
@@ -1,6 +1,6 @@
---- products.py.orig Wed Jan 25 13:06:09 2006
-+++ products.py Wed May 31 22:34:26 2006
-@@ -822,16 +822,18 @@
+--- products.py.orig Wed Jun 28 15:53:05 2006
++++ products.py Sat Jul 1 19:53:16 2006
+@@ -966,16 +966,18 @@
'HOME_PYTHON', 'PYTHON_EXE', 'PYTHONLIB', 'PYMODULES_PREFIX',
'HOME_MUMPS', 'HOME_ZMAT', 'HOME_MPI',
'HOME_MED', 'HOME_HDF', 'HOME_CRPCRS',
@@ -25,7 +25,7 @@
'NOBUILD', ],
)
cfg['OTHERLIB'] = cfg.get('OTHERLIB', '')
-@@ -871,6 +873,18 @@
+@@ -1015,6 +1017,18 @@
cxxlibs.extend(['stdc++', 'supc++'])
zmat_platform='Linux4'
mpilibs.extend(['mpich'])
@@ -41,10 +41,10 @@
+ cxxlibs.extend(['stdc++', 'supc++'])
+ zmat_platform=''
+ mpilibs.extend(['mpich'])
- elif cfg['IFDEF']=='x86_64':
+ elif cfg['IFDEF'] == 'LINUX64':
opt['MATH_LIST'] = ['lapack', 'blas', 'g2c']
opt['SYSLIB'] = '-Wl,--allow-multiple-definition -Wl,--export-dynamic -lieee -ldl -lpthread -lutil -lm'
-@@ -922,8 +936,8 @@
+@@ -1066,8 +1080,8 @@
opt['FINCLUDE'] = ''
# ----- F90
@@ -55,12 +55,12 @@
opt['F90INCLUDE']=''
# ----- check for MED and HDF5 libraries, and HDF5 includes
-@@ -1011,7 +1025,7 @@
- for lib in ('common', 'scotch', 'scotcherr', 'scotcherrcom'):
+@@ -1160,7 +1174,7 @@
ftools.findlib_and_set(cfg, 'SCOTCHLIB', lib,
kargs['libdirs'], cfg['HOME_SCOTCH'],
-- typ='lib', err=True, append=True, check_home=('HOME_SCOTCH', 'bin'))
-+ typ='lib', err=True, append=True, check_home=('HOME_SCOTCH', 'lib'))
+ err=True, append=True)
+- ftools.CheckFromLastFound(cfg, 'HOME_SCOTCH', 'bin')
++ ftools.CheckFromLastFound(cfg, 'HOME_SCOTCH', 'lib')
ftools.find_and_set(cfg, 'CINCLUDE', 'scotchf.h',
kargs['incdirs'], cfg['HOME_SCOTCH'],
typ='inc', err=True, append=True)
diff --git a/french/aster/files/patch-setup.py b/french/aster/files/patch-setup.py
index fb2782938d1a..0268dc0662cd 100644
--- a/french/aster/files/patch-setup.py
+++ b/french/aster/files/patch-setup.py
@@ -1,11 +1,11 @@
---- setup.py.orig Thu Jun 30 16:35:15 2005
-+++ setup.py Fri Jul 1 20:46:30 2005
-@@ -260,6 +260,8 @@
- # 1.3.2. ----- convert uname value to Code_Aster terminology...
- if sys.platform == 'linux2':
- cfg['IFDEF']='P_LINUX'
+--- setup.py.orig Wed Jun 28 17:31:56 2006
++++ setup.py Sat Jul 1 20:00:55 2006
+@@ -275,6 +275,8 @@
+ cfg['IFDEF']='LINUX64'
+ else:
+ cfg['IFDEF']='P_LINUX'
+ elif sys.platform[:7] == 'freebsd':
+ cfg['IFDEF']='FREEBSD'
- elif sys.platform == 'x86_64':
- cfg['IFDEF']='x86_64'
+ # elif sys.platform == 'win32':
+ # ???
elif sys.platform[:4] == 'osf1':
diff --git a/french/aster/pkg-plist b/french/aster/pkg-plist
index 595dd33d3572..c5fbb94f9bb7 100644
--- a/french/aster/pkg-plist
+++ b/french/aster/pkg-plist
@@ -116,6 +116,7 @@
%%ASTERDIR%%/astest/demo001a.52
%%ASTERDIR%%/astest/demo001a.53
%%ASTERDIR%%/astest/demo001a.54
+%%ASTERDIR%%/astest/demo001a.55
%%ASTERDIR%%/astest/demo001a.comm
%%ASTERDIR%%/astest/demo001a.datg
%%ASTERDIR%%/astest/demo001a.geo
@@ -224,263 +225,139 @@
%%ASTERDIR%%/astest/feti006a.mail
%%ASTERDIR%%/astest/feti006a.para
%%ASTERDIR%%/astest/forma01a.18
-%%ASTERDIR%%/astest/forma01a.code
%%ASTERDIR%%/astest/forma01a.comm
%%ASTERDIR%%/astest/forma01a.datg
-%%ASTERDIR%%/astest/forma01a.export
%%ASTERDIR%%/astest/forma01a.geo
%%ASTERDIR%%/astest/forma01a.mail
-%%ASTERDIR%%/astest/forma01a.mess
%%ASTERDIR%%/astest/forma01a.mgib
%%ASTERDIR%%/astest/forma01a.para
-%%ASTERDIR%%/astest/forma01a.resu
-%%ASTERDIR%%/astest/forma01b.code
%%ASTERDIR%%/astest/forma01b.comm
%%ASTERDIR%%/astest/forma01b.datg
-%%ASTERDIR%%/astest/forma01b.export
%%ASTERDIR%%/astest/forma01b.mail
-%%ASTERDIR%%/astest/forma01b.mess
%%ASTERDIR%%/astest/forma01b.mgib
%%ASTERDIR%%/astest/forma01b.para
-%%ASTERDIR%%/astest/forma01b.resu
%%ASTERDIR%%/astest/forma01c.17
%%ASTERDIR%%/astest/forma01c.18
%%ASTERDIR%%/astest/forma01c.21
-%%ASTERDIR%%/astest/forma01c.code
%%ASTERDIR%%/astest/forma01c.com1
%%ASTERDIR%%/astest/forma01c.com2
%%ASTERDIR%%/astest/forma01c.comm
%%ASTERDIR%%/astest/forma01c.datg
-%%ASTERDIR%%/astest/forma01c.export
%%ASTERDIR%%/astest/forma01c.mail
-%%ASTERDIR%%/astest/forma01c.mess
%%ASTERDIR%%/astest/forma01c.mgib
%%ASTERDIR%%/astest/forma01c.para
-%%ASTERDIR%%/astest/forma01c.resu
-%%ASTERDIR%%/astest/forma01d.code
%%ASTERDIR%%/astest/forma01d.comm
%%ASTERDIR%%/astest/forma01d.datg
-%%ASTERDIR%%/astest/forma01d.export
-%%ASTERDIR%%/astest/forma01d.mess
%%ASTERDIR%%/astest/forma01d.mgib
%%ASTERDIR%%/astest/forma01d.para
-%%ASTERDIR%%/astest/forma01d.resu
-%%ASTERDIR%%/astest/forma01e.code
%%ASTERDIR%%/astest/forma01e.comm
%%ASTERDIR%%/astest/forma01e.datg
-%%ASTERDIR%%/astest/forma01e.export
%%ASTERDIR%%/astest/forma01e.mail
-%%ASTERDIR%%/astest/forma01e.mess
%%ASTERDIR%%/astest/forma01e.mgib
%%ASTERDIR%%/astest/forma01e.para
-%%ASTERDIR%%/astest/forma01e.resu
-%%ASTERDIR%%/astest/forma01f.code
%%ASTERDIR%%/astest/forma01f.comm
%%ASTERDIR%%/astest/forma01f.datg
-%%ASTERDIR%%/astest/forma01f.export
%%ASTERDIR%%/astest/forma01f.geo
%%ASTERDIR%%/astest/forma01f.mail
-%%ASTERDIR%%/astest/forma01f.mess
%%ASTERDIR%%/astest/forma01f.mgib
%%ASTERDIR%%/astest/forma01f.msh
%%ASTERDIR%%/astest/forma01f.para
-%%ASTERDIR%%/astest/forma01f.resu
-%%ASTERDIR%%/astest/forma01g.code
%%ASTERDIR%%/astest/forma01g.comm
%%ASTERDIR%%/astest/forma01g.datg
-%%ASTERDIR%%/astest/forma01g.export
%%ASTERDIR%%/astest/forma01g.geo
%%ASTERDIR%%/astest/forma01g.mail
-%%ASTERDIR%%/astest/forma01g.mess
%%ASTERDIR%%/astest/forma01g.mgib
%%ASTERDIR%%/astest/forma01g.msh
%%ASTERDIR%%/astest/forma01g.para
-%%ASTERDIR%%/astest/forma01g.resu
-%%ASTERDIR%%/astest/forma01h.code
%%ASTERDIR%%/astest/forma01h.comm
%%ASTERDIR%%/astest/forma01h.datg
-%%ASTERDIR%%/astest/forma01h.export
%%ASTERDIR%%/astest/forma01h.geo
-%%ASTERDIR%%/astest/forma01h.mess
%%ASTERDIR%%/astest/forma01h.mgib
%%ASTERDIR%%/astest/forma01h.msh
%%ASTERDIR%%/astest/forma01h.para
-%%ASTERDIR%%/astest/forma01h.resu
-%%ASTERDIR%%/astest/forma02a.code
%%ASTERDIR%%/astest/forma02a.comm
-%%ASTERDIR%%/astest/forma02a.export
%%ASTERDIR%%/astest/forma02a.mail
-%%ASTERDIR%%/astest/forma02a.mess
%%ASTERDIR%%/astest/forma02a.para
-%%ASTERDIR%%/astest/forma02a.resu
-%%ASTERDIR%%/astest/forma02b.code
%%ASTERDIR%%/astest/forma02b.comm
-%%ASTERDIR%%/astest/forma02b.export
%%ASTERDIR%%/astest/forma02b.mail
-%%ASTERDIR%%/astest/forma02b.mess
%%ASTERDIR%%/astest/forma02b.para
-%%ASTERDIR%%/astest/forma02b.resu
-%%ASTERDIR%%/astest/forma03a.code
%%ASTERDIR%%/astest/forma03a.com1
%%ASTERDIR%%/astest/forma03a.comm
%%ASTERDIR%%/astest/forma03a.datg
-%%ASTERDIR%%/astest/forma03a.export
-%%ASTERDIR%%/astest/forma03a.mess
%%ASTERDIR%%/astest/forma03a.mgib
%%ASTERDIR%%/astest/forma03a.para
-%%ASTERDIR%%/astest/forma03a.resu
-%%ASTERDIR%%/astest/forma03b.code
%%ASTERDIR%%/astest/forma03b.com1
%%ASTERDIR%%/astest/forma03b.comm
%%ASTERDIR%%/astest/forma03b.datg
-%%ASTERDIR%%/astest/forma03b.export
%%ASTERDIR%%/astest/forma03b.mail
-%%ASTERDIR%%/astest/forma03b.mess
%%ASTERDIR%%/astest/forma03b.mgib
%%ASTERDIR%%/astest/forma03b.para
-%%ASTERDIR%%/astest/forma03b.resu
-%%ASTERDIR%%/astest/forma04a.code
%%ASTERDIR%%/astest/forma04a.comm
-%%ASTERDIR%%/astest/forma04a.export
%%ASTERDIR%%/astest/forma04a.mail
-%%ASTERDIR%%/astest/forma04a.mess
%%ASTERDIR%%/astest/forma04a.para
-%%ASTERDIR%%/astest/forma04a.resu
-%%ASTERDIR%%/astest/forma04b.code
%%ASTERDIR%%/astest/forma04b.comm
-%%ASTERDIR%%/astest/forma04b.export
%%ASTERDIR%%/astest/forma04b.mail
-%%ASTERDIR%%/astest/forma04b.mess
%%ASTERDIR%%/astest/forma04b.para
-%%ASTERDIR%%/astest/forma04b.resu
-%%ASTERDIR%%/astest/forma04c.code
%%ASTERDIR%%/astest/forma04c.comm
-%%ASTERDIR%%/astest/forma04c.export
%%ASTERDIR%%/astest/forma04c.mail
-%%ASTERDIR%%/astest/forma04c.mess
%%ASTERDIR%%/astest/forma04c.para
-%%ASTERDIR%%/astest/forma04c.resu
-%%ASTERDIR%%/astest/forma05a.code
%%ASTERDIR%%/astest/forma05a.comm
-%%ASTERDIR%%/astest/forma05a.export
%%ASTERDIR%%/astest/forma05a.mail
-%%ASTERDIR%%/astest/forma05a.mess
%%ASTERDIR%%/astest/forma05a.para
-%%ASTERDIR%%/astest/forma05a.resu
%%ASTERDIR%%/astest/forma05b.21
-%%ASTERDIR%%/astest/forma05b.code
%%ASTERDIR%%/astest/forma05b.comm
-%%ASTERDIR%%/astest/forma05b.export
%%ASTERDIR%%/astest/forma05b.mail
-%%ASTERDIR%%/astest/forma05b.mess
%%ASTERDIR%%/astest/forma05b.para
-%%ASTERDIR%%/astest/forma05b.resu
-%%ASTERDIR%%/astest/forma06a.code
%%ASTERDIR%%/astest/forma06a.comm
%%ASTERDIR%%/astest/forma06a.datg
-%%ASTERDIR%%/astest/forma06a.export
-%%ASTERDIR%%/astest/forma06a.mess
%%ASTERDIR%%/astest/forma06a.mgib
%%ASTERDIR%%/astest/forma06a.para
-%%ASTERDIR%%/astest/forma06a.resu
-%%ASTERDIR%%/astest/forma06b.code
%%ASTERDIR%%/astest/forma06b.comm
%%ASTERDIR%%/astest/forma06b.datg
-%%ASTERDIR%%/astest/forma06b.export
-%%ASTERDIR%%/astest/forma06b.mess
%%ASTERDIR%%/astest/forma06b.mgib
%%ASTERDIR%%/astest/forma06b.para
-%%ASTERDIR%%/astest/forma06b.resu
-%%ASTERDIR%%/astest/forma08a.code
%%ASTERDIR%%/astest/forma08a.comm
%%ASTERDIR%%/astest/forma08a.datg
-%%ASTERDIR%%/astest/forma08a.export
-%%ASTERDIR%%/astest/forma08a.mess
%%ASTERDIR%%/astest/forma08a.mgib
%%ASTERDIR%%/astest/forma08a.para
-%%ASTERDIR%%/astest/forma08a.resu
-%%ASTERDIR%%/astest/forma08b.code
%%ASTERDIR%%/astest/forma08b.comm
%%ASTERDIR%%/astest/forma08b.datg
-%%ASTERDIR%%/astest/forma08b.export
-%%ASTERDIR%%/astest/forma08b.mess
%%ASTERDIR%%/astest/forma08b.mgib
%%ASTERDIR%%/astest/forma08b.para
-%%ASTERDIR%%/astest/forma08b.resu
-%%ASTERDIR%%/astest/forma09a.code
%%ASTERDIR%%/astest/forma09a.comm
%%ASTERDIR%%/astest/forma09a.datg
-%%ASTERDIR%%/astest/forma09a.export
%%ASTERDIR%%/astest/forma09a.mail
-%%ASTERDIR%%/astest/forma09a.mess
%%ASTERDIR%%/astest/forma09a.mgib
%%ASTERDIR%%/astest/forma09a.para
-%%ASTERDIR%%/astest/forma09a.resu
-%%ASTERDIR%%/astest/forma09b.code
%%ASTERDIR%%/astest/forma09b.comm
%%ASTERDIR%%/astest/forma09b.datg
-%%ASTERDIR%%/astest/forma09b.export
-%%ASTERDIR%%/astest/forma09b.mess
%%ASTERDIR%%/astest/forma09b.mgib
%%ASTERDIR%%/astest/forma09b.para
-%%ASTERDIR%%/astest/forma09b.resu
-%%ASTERDIR%%/astest/forma11a.code
%%ASTERDIR%%/astest/forma11a.comm
-%%ASTERDIR%%/astest/forma11a.export
%%ASTERDIR%%/astest/forma11a.mail
-%%ASTERDIR%%/astest/forma11a.mess
%%ASTERDIR%%/astest/forma11a.para
-%%ASTERDIR%%/astest/forma11a.resu
-%%ASTERDIR%%/astest/forma11b.code
%%ASTERDIR%%/astest/forma11b.comm
-%%ASTERDIR%%/astest/forma11b.export
%%ASTERDIR%%/astest/forma11b.mail
-%%ASTERDIR%%/astest/forma11b.mess
%%ASTERDIR%%/astest/forma11b.para
-%%ASTERDIR%%/astest/forma11b.resu
-%%ASTERDIR%%/astest/forma11c.code
%%ASTERDIR%%/astest/forma11c.comm
-%%ASTERDIR%%/astest/forma11c.export
%%ASTERDIR%%/astest/forma11c.mail
-%%ASTERDIR%%/astest/forma11c.mess
%%ASTERDIR%%/astest/forma11c.para
-%%ASTERDIR%%/astest/forma11c.resu
-%%ASTERDIR%%/astest/forma11d.code
%%ASTERDIR%%/astest/forma11d.comm
-%%ASTERDIR%%/astest/forma11d.export
%%ASTERDIR%%/astest/forma11d.mail
-%%ASTERDIR%%/astest/forma11d.mess
%%ASTERDIR%%/astest/forma11d.para
-%%ASTERDIR%%/astest/forma11d.resu
-%%ASTERDIR%%/astest/forma12a.code
%%ASTERDIR%%/astest/forma12a.comm
-%%ASTERDIR%%/astest/forma12a.export
%%ASTERDIR%%/astest/forma12a.mail
-%%ASTERDIR%%/astest/forma12a.mess
%%ASTERDIR%%/astest/forma12a.para
-%%ASTERDIR%%/astest/forma12a.resu
-%%ASTERDIR%%/astest/forma12b.code
%%ASTERDIR%%/astest/forma12b.comm
-%%ASTERDIR%%/astest/forma12b.export
%%ASTERDIR%%/astest/forma12b.mail
-%%ASTERDIR%%/astest/forma12b.mess
%%ASTERDIR%%/astest/forma12b.para
-%%ASTERDIR%%/astest/forma12b.resu
%%ASTERDIR%%/astest/forma12c.22
-%%ASTERDIR%%/astest/forma12c.code
%%ASTERDIR%%/astest/forma12c.comm
-%%ASTERDIR%%/astest/forma12c.export
%%ASTERDIR%%/astest/forma12c.mail
-%%ASTERDIR%%/astest/forma12c.mess
%%ASTERDIR%%/astest/forma12c.para
-%%ASTERDIR%%/astest/forma12c.resu
-%%ASTERDIR%%/astest/forma12d.code
%%ASTERDIR%%/astest/forma12d.comm
-%%ASTERDIR%%/astest/forma12d.export
%%ASTERDIR%%/astest/forma12d.mail
-%%ASTERDIR%%/astest/forma12d.mess
%%ASTERDIR%%/astest/forma12d.para
-%%ASTERDIR%%/astest/forma12d.resu
%%ASTERDIR%%/astest/hpla100a.comm
%%ASTERDIR%%/astest/hpla100a.mail
%%ASTERDIR%%/astest/hpla100a.mgib
@@ -599,9 +476,6 @@
%%ASTERDIR%%/astest/hsna102e.datg
%%ASTERDIR%%/astest/hsna102e.mgib
%%ASTERDIR%%/astest/hsna102e.para
-%%ASTERDIR%%/astest/hsnl100a.comm
-%%ASTERDIR%%/astest/hsnl100a.mail
-%%ASTERDIR%%/astest/hsnl100a.para
%%ASTERDIR%%/astest/hsns100a.comm
%%ASTERDIR%%/astest/hsns100a.mail
%%ASTERDIR%%/astest/hsns100a.para
@@ -988,6 +862,18 @@
%%ASTERDIR%%/astest/sdll134a.comm
%%ASTERDIR%%/astest/sdll134a.mail
%%ASTERDIR%%/astest/sdll134a.para
+%%ASTERDIR%%/astest/sdll135a.comm
+%%ASTERDIR%%/astest/sdll135a.mail
+%%ASTERDIR%%/astest/sdll135a.para
+%%ASTERDIR%%/astest/sdll135b.comm
+%%ASTERDIR%%/astest/sdll135b.mail
+%%ASTERDIR%%/astest/sdll135b.para
+%%ASTERDIR%%/astest/sdll135c.comm
+%%ASTERDIR%%/astest/sdll135c.mail
+%%ASTERDIR%%/astest/sdll135c.para
+%%ASTERDIR%%/astest/sdll135d.comm
+%%ASTERDIR%%/astest/sdll135d.mail
+%%ASTERDIR%%/astest/sdll135d.para
%%ASTERDIR%%/astest/sdll15a.comm
%%ASTERDIR%%/astest/sdll15a.mail
%%ASTERDIR%%/astest/sdll15a.para
@@ -1144,6 +1030,10 @@
%%ASTERDIR%%/astest/sdls114b.comm
%%ASTERDIR%%/astest/sdls114b.mail
%%ASTERDIR%%/astest/sdls114b.para
+%%ASTERDIR%%/astest/sdls115a.comm
+%%ASTERDIR%%/astest/sdls115a.datg
+%%ASTERDIR%%/astest/sdls115a.mgib
+%%ASTERDIR%%/astest/sdls115a.para
%%ASTERDIR%%/astest/sdls501a.comm
%%ASTERDIR%%/astest/sdls501a.mail
%%ASTERDIR%%/astest/sdls501a.msup
@@ -1595,6 +1485,9 @@
%%ASTERDIR%%/astest/sdnv100g.comm
%%ASTERDIR%%/astest/sdnv100g.mail
%%ASTERDIR%%/astest/sdnv100g.para
+%%ASTERDIR%%/astest/sdnv100h.comm
+%%ASTERDIR%%/astest/sdnv100h.mail
+%%ASTERDIR%%/astest/sdnv100h.para
%%ASTERDIR%%/astest/sdnv102a.35
%%ASTERDIR%%/astest/sdnv102a.75
%%ASTERDIR%%/astest/sdnv102a.com0
@@ -1636,6 +1529,18 @@
%%ASTERDIR%%/astest/sdnv104e.comm
%%ASTERDIR%%/astest/sdnv104e.mail
%%ASTERDIR%%/astest/sdnv104e.para
+%%ASTERDIR%%/astest/sdnv105a.comm
+%%ASTERDIR%%/astest/sdnv105a.datg
+%%ASTERDIR%%/astest/sdnv105a.mgib
+%%ASTERDIR%%/astest/sdnv105a.para
+%%ASTERDIR%%/astest/sdnv106a.comm
+%%ASTERDIR%%/astest/sdnv106a.datg
+%%ASTERDIR%%/astest/sdnv106a.mail
+%%ASTERDIR%%/astest/sdnv106a.mgib
+%%ASTERDIR%%/astest/sdnv106a.para
+%%ASTERDIR%%/astest/sdnv107a.comm
+%%ASTERDIR%%/astest/sdnv107a.mail
+%%ASTERDIR%%/astest/sdnv107a.para
%%ASTERDIR%%/astest/sensd01a.50
%%ASTERDIR%%/astest/sensd01a.comm
%%ASTERDIR%%/astest/sensd01a.mail
@@ -1645,6 +1550,7 @@
%%ASTERDIR%%/astest/sensd02a.mail
%%ASTERDIR%%/astest/sensd02a.mgib
%%ASTERDIR%%/astest/sensd02a.para
+%%ASTERDIR%%/astest/sensd03a.com1
%%ASTERDIR%%/astest/sensd03a.comm
%%ASTERDIR%%/astest/sensd03a.datg
%%ASTERDIR%%/astest/sensd03a.mgib
@@ -1766,6 +1672,7 @@
%%ASTERDIR%%/astest/senst03a.comm
%%ASTERDIR%%/astest/senst03a.mail
%%ASTERDIR%%/astest/senst03a.para
+%%ASTERDIR%%/astest/senst03b.com1
%%ASTERDIR%%/astest/senst03b.comm
%%ASTERDIR%%/astest/senst03b.mail
%%ASTERDIR%%/astest/senst03b.para
@@ -2145,6 +2052,9 @@
%%ASTERDIR%%/astest/sslp106b.datg
%%ASTERDIR%%/astest/sslp106b.mgib
%%ASTERDIR%%/astest/sslp106b.para
+%%ASTERDIR%%/astest/sslp107a.comm
+%%ASTERDIR%%/astest/sslp107a.mail
+%%ASTERDIR%%/astest/sslp107a.para
%%ASTERDIR%%/astest/sslp200a.comm
%%ASTERDIR%%/astest/sslp200a.mail
%%ASTERDIR%%/astest/sslp200a.para
@@ -2175,6 +2085,14 @@
%%ASTERDIR%%/astest/sslp313c.mail
%%ASTERDIR%%/astest/sslp313c.mgib
%%ASTERDIR%%/astest/sslp313c.para
+%%ASTERDIR%%/astest/sslp313d.comm
+%%ASTERDIR%%/astest/sslp313d.datg
+%%ASTERDIR%%/astest/sslp313d.mgib
+%%ASTERDIR%%/astest/sslp313d.para
+%%ASTERDIR%%/astest/sslp313e.comm
+%%ASTERDIR%%/astest/sslp313e.datg
+%%ASTERDIR%%/astest/sslp313e.mgib
+%%ASTERDIR%%/astest/sslp313e.para
%%ASTERDIR%%/astest/sslp314c.comm
%%ASTERDIR%%/astest/sslp314c.datg
%%ASTERDIR%%/astest/sslp314c.mgib
@@ -2620,13 +2538,11 @@
%%ASTERDIR%%/astest/ssls504a.datg
%%ASTERDIR%%/astest/ssls504a.mail
%%ASTERDIR%%/astest/ssls504a.mgib
-%%ASTERDIR%%/astest/ssls504a.msup
%%ASTERDIR%%/astest/ssls504a.para
%%ASTERDIR%%/astest/ssls504b.comm
%%ASTERDIR%%/astest/ssls504b.datg
%%ASTERDIR%%/astest/ssls504b.mail
%%ASTERDIR%%/astest/ssls504b.mgib
-%%ASTERDIR%%/astest/ssls504b.msup
%%ASTERDIR%%/astest/ssls504b.para
%%ASTERDIR%%/astest/sslv04a.comm
%%ASTERDIR%%/astest/sslv04a.datg
@@ -2794,6 +2710,12 @@
%%ASTERDIR%%/astest/sslv113b.mail
%%ASTERDIR%%/astest/sslv113b.mgib
%%ASTERDIR%%/astest/sslv113b.para
+%%ASTERDIR%%/astest/sslv113c.comm
+%%ASTERDIR%%/astest/sslv113c.mail
+%%ASTERDIR%%/astest/sslv113c.para
+%%ASTERDIR%%/astest/sslv113d.comm
+%%ASTERDIR%%/astest/sslv113d.mail
+%%ASTERDIR%%/astest/sslv113d.para
%%ASTERDIR%%/astest/sslv114a.22
%%ASTERDIR%%/astest/sslv114a.comm
%%ASTERDIR%%/astest/sslv114a.mail
@@ -2970,6 +2892,11 @@
%%ASTERDIR%%/astest/ssna102d.mail
%%ASTERDIR%%/astest/ssna102d.mgib
%%ASTERDIR%%/astest/ssna102d.para
+%%ASTERDIR%%/astest/ssna102e.comm
+%%ASTERDIR%%/astest/ssna102e.datg
+%%ASTERDIR%%/astest/ssna102e.mail
+%%ASTERDIR%%/astest/ssna102e.mgib
+%%ASTERDIR%%/astest/ssna102e.para
%%ASTERDIR%%/astest/ssna103a.comm
%%ASTERDIR%%/astest/ssna103a.datg
%%ASTERDIR%%/astest/ssna103a.mgib
@@ -3105,6 +3032,11 @@
%%ASTERDIR%%/astest/ssnl107c.mail
%%ASTERDIR%%/astest/ssnl107c.mgib
%%ASTERDIR%%/astest/ssnl107c.para
+%%ASTERDIR%%/astest/ssnl107d.comm
+%%ASTERDIR%%/astest/ssnl107d.datg
+%%ASTERDIR%%/astest/ssnl107d.mail
+%%ASTERDIR%%/astest/ssnl107d.mgib
+%%ASTERDIR%%/astest/ssnl107d.para
%%ASTERDIR%%/astest/ssnl108a.comm
%%ASTERDIR%%/astest/ssnl108a.mail
%%ASTERDIR%%/astest/ssnl108a.para
@@ -3352,6 +3284,9 @@
%%ASTERDIR%%/astest/ssnp116c.datg
%%ASTERDIR%%/astest/ssnp116c.mgib
%%ASTERDIR%%/astest/ssnp116c.para
+%%ASTERDIR%%/astest/ssnp116d.comm
+%%ASTERDIR%%/astest/ssnp116d.mail
+%%ASTERDIR%%/astest/ssnp116d.para
%%ASTERDIR%%/astest/ssnp117a.comm
%%ASTERDIR%%/astest/ssnp117a.mail
%%ASTERDIR%%/astest/ssnp117a.para
@@ -3406,6 +3341,10 @@
%%ASTERDIR%%/astest/ssnp121k.datg
%%ASTERDIR%%/astest/ssnp121k.mgib
%%ASTERDIR%%/astest/ssnp121k.para
+%%ASTERDIR%%/astest/ssnp121l.comm
+%%ASTERDIR%%/astest/ssnp121l.datg
+%%ASTERDIR%%/astest/ssnp121l.mgib
+%%ASTERDIR%%/astest/ssnp121l.para
%%ASTERDIR%%/astest/ssnp122a.comm
%%ASTERDIR%%/astest/ssnp122a.mail
%%ASTERDIR%%/astest/ssnp122a.para
@@ -3513,6 +3452,11 @@
%%ASTERDIR%%/astest/ssnp501b.datg
%%ASTERDIR%%/astest/ssnp501b.mgib
%%ASTERDIR%%/astest/ssnp501b.para
+%%ASTERDIR%%/astest/ssnp501d.comm
+%%ASTERDIR%%/astest/ssnp501d.datg
+%%ASTERDIR%%/astest/ssnp501d.mail
+%%ASTERDIR%%/astest/ssnp501d.mgib
+%%ASTERDIR%%/astest/ssnp501d.para
%%ASTERDIR%%/astest/ssns100a.comm
%%ASTERDIR%%/astest/ssns100a.mail
%%ASTERDIR%%/astest/ssns100a.para
@@ -3607,12 +3551,11 @@
%%ASTERDIR%%/astest/ssnv104i.mail
%%ASTERDIR%%/astest/ssnv104i.mgib
%%ASTERDIR%%/astest/ssnv104i.para
-%%ASTERDIR%%/astest/ssnv107a.comm
-%%ASTERDIR%%/astest/ssnv107a.mail
-%%ASTERDIR%%/astest/ssnv107a.para
-%%ASTERDIR%%/astest/ssnv107b.comm
-%%ASTERDIR%%/astest/ssnv107b.mail
-%%ASTERDIR%%/astest/ssnv107b.para
+%%ASTERDIR%%/astest/ssnv104j.comm
+%%ASTERDIR%%/astest/ssnv104j.datg
+%%ASTERDIR%%/astest/ssnv104j.mail
+%%ASTERDIR%%/astest/ssnv104j.mgib
+%%ASTERDIR%%/astest/ssnv104j.para
%%ASTERDIR%%/astest/ssnv112a.comm
%%ASTERDIR%%/astest/ssnv112a.datg
%%ASTERDIR%%/astest/ssnv112a.mail
@@ -3678,9 +3621,6 @@
%%ASTERDIR%%/astest/ssnv122a.comm
%%ASTERDIR%%/astest/ssnv122a.mail
%%ASTERDIR%%/astest/ssnv122a.para
-%%ASTERDIR%%/astest/ssnv123a.comm
-%%ASTERDIR%%/astest/ssnv123a.mail
-%%ASTERDIR%%/astest/ssnv123a.para
%%ASTERDIR%%/astest/ssnv124a.comm
%%ASTERDIR%%/astest/ssnv124a.datg
%%ASTERDIR%%/astest/ssnv124a.mail
@@ -3721,6 +3661,10 @@
%%ASTERDIR%%/astest/ssnv127b.mail
%%ASTERDIR%%/astest/ssnv127b.mgib
%%ASTERDIR%%/astest/ssnv127b.para
+%%ASTERDIR%%/astest/ssnv127c.comm
+%%ASTERDIR%%/astest/ssnv127c.datg
+%%ASTERDIR%%/astest/ssnv127c.mgib
+%%ASTERDIR%%/astest/ssnv127c.para
%%ASTERDIR%%/astest/ssnv127d.comm
%%ASTERDIR%%/astest/ssnv127d.datg
%%ASTERDIR%%/astest/ssnv127d.mail
@@ -3733,10 +3677,6 @@
%%ASTERDIR%%/astest/ssnv127f.comm
%%ASTERDIR%%/astest/ssnv127f.mail
%%ASTERDIR%%/astest/ssnv127f.para
-%%ASTERDIR%%/astest/ssnv127g.comm
-%%ASTERDIR%%/astest/ssnv127g.datg
-%%ASTERDIR%%/astest/ssnv127g.mgib
-%%ASTERDIR%%/astest/ssnv127g.para
%%ASTERDIR%%/astest/ssnv127h.comm
%%ASTERDIR%%/astest/ssnv127h.mail
%%ASTERDIR%%/astest/ssnv127h.para
@@ -3834,9 +3774,11 @@
%%ASTERDIR%%/astest/ssnv129d.comm
%%ASTERDIR%%/astest/ssnv129d.mail
%%ASTERDIR%%/astest/ssnv129d.para
-%%ASTERDIR%%/astest/ssnv131a.comm
-%%ASTERDIR%%/astest/ssnv131a.mail
-%%ASTERDIR%%/astest/ssnv131a.para
+%%ASTERDIR%%/astest/ssnv129e.comm
+%%ASTERDIR%%/astest/ssnv129e.datg
+%%ASTERDIR%%/astest/ssnv129e.mail
+%%ASTERDIR%%/astest/ssnv129e.mgib
+%%ASTERDIR%%/astest/ssnv129e.para
%%ASTERDIR%%/astest/ssnv131b.comm
%%ASTERDIR%%/astest/ssnv131b.mail
%%ASTERDIR%%/astest/ssnv131b.para
@@ -3893,6 +3835,13 @@
%%ASTERDIR%%/astest/ssnv142a.datg
%%ASTERDIR%%/astest/ssnv142a.mgib
%%ASTERDIR%%/astest/ssnv142a.para
+%%ASTERDIR%%/astest/ssnv142b.comm
+%%ASTERDIR%%/astest/ssnv142b.mail
+%%ASTERDIR%%/astest/ssnv142b.para
+%%ASTERDIR%%/astest/ssnv142c.18
+%%ASTERDIR%%/astest/ssnv142c.comm
+%%ASTERDIR%%/astest/ssnv142c.mail
+%%ASTERDIR%%/astest/ssnv142c.para
%%ASTERDIR%%/astest/ssnv143a.comm
%%ASTERDIR%%/astest/ssnv143a.mail
%%ASTERDIR%%/astest/ssnv143a.para
@@ -4078,6 +4027,9 @@
%%ASTERDIR%%/astest/ssnv167d.comm
%%ASTERDIR%%/astest/ssnv167d.msh
%%ASTERDIR%%/astest/ssnv167d.para
+%%ASTERDIR%%/astest/ssnv167e.comm
+%%ASTERDIR%%/astest/ssnv167e.msh
+%%ASTERDIR%%/astest/ssnv167e.para
%%ASTERDIR%%/astest/ssnv168a.comm
%%ASTERDIR%%/astest/ssnv168a.mail
%%ASTERDIR%%/astest/ssnv168a.para
@@ -4186,6 +4138,18 @@
%%ASTERDIR%%/astest/ssnv182c.datg
%%ASTERDIR%%/astest/ssnv182c.mgib
%%ASTERDIR%%/astest/ssnv182c.para
+%%ASTERDIR%%/astest/ssnv182d.comm
+%%ASTERDIR%%/astest/ssnv182d.datg
+%%ASTERDIR%%/astest/ssnv182d.mgib
+%%ASTERDIR%%/astest/ssnv182d.para
+%%ASTERDIR%%/astest/ssnv182e.comm
+%%ASTERDIR%%/astest/ssnv182e.datg
+%%ASTERDIR%%/astest/ssnv182e.mgib
+%%ASTERDIR%%/astest/ssnv182e.para
+%%ASTERDIR%%/astest/ssnv182f.comm
+%%ASTERDIR%%/astest/ssnv182f.datg
+%%ASTERDIR%%/astest/ssnv182f.mgib
+%%ASTERDIR%%/astest/ssnv182f.para
%%ASTERDIR%%/astest/ssnv183a.comm
%%ASTERDIR%%/astest/ssnv183a.mail
%%ASTERDIR%%/astest/ssnv183a.para
@@ -4224,6 +4188,23 @@
%%ASTERDIR%%/astest/ssnv185f.mail
%%ASTERDIR%%/astest/ssnv185f.mgib
%%ASTERDIR%%/astest/ssnv185f.para
+%%ASTERDIR%%/astest/ssnv185g.comm
+%%ASTERDIR%%/astest/ssnv185g.datg
+%%ASTERDIR%%/astest/ssnv185g.mgib
+%%ASTERDIR%%/astest/ssnv185g.para
+%%ASTERDIR%%/astest/ssnv185h.comm
+%%ASTERDIR%%/astest/ssnv185h.datg
+%%ASTERDIR%%/astest/ssnv185h.mgib
+%%ASTERDIR%%/astest/ssnv185h.para
+%%ASTERDIR%%/astest/ssnv185i.comm
+%%ASTERDIR%%/astest/ssnv185i.datg
+%%ASTERDIR%%/astest/ssnv185i.mail
+%%ASTERDIR%%/astest/ssnv185i.mgib
+%%ASTERDIR%%/astest/ssnv185i.para
+%%ASTERDIR%%/astest/ssnv185j.comm
+%%ASTERDIR%%/astest/ssnv185j.datg
+%%ASTERDIR%%/astest/ssnv185j.mgib
+%%ASTERDIR%%/astest/ssnv185j.para
%%ASTERDIR%%/astest/ssnv186a.comm
%%ASTERDIR%%/astest/ssnv186a.datg
%%ASTERDIR%%/astest/ssnv186a.mgib
@@ -4234,6 +4215,7 @@
%%ASTERDIR%%/astest/ssnv186b.para
%%ASTERDIR%%/astest/ssnv186c.comm
%%ASTERDIR%%/astest/ssnv186c.datg
+%%ASTERDIR%%/astest/ssnv186c.mail
%%ASTERDIR%%/astest/ssnv186c.mgib
%%ASTERDIR%%/astest/ssnv186c.para
%%ASTERDIR%%/astest/ssnv186d.comm
@@ -4244,6 +4226,42 @@
%%ASTERDIR%%/astest/ssnv186e.geo
%%ASTERDIR%%/astest/ssnv186e.msh
%%ASTERDIR%%/astest/ssnv186e.para
+%%ASTERDIR%%/astest/ssnv186f.comm
+%%ASTERDIR%%/astest/ssnv186f.datg
+%%ASTERDIR%%/astest/ssnv186f.mail
+%%ASTERDIR%%/astest/ssnv186f.mgib
+%%ASTERDIR%%/astest/ssnv186f.para
+%%ASTERDIR%%/astest/ssnv186g.comm
+%%ASTERDIR%%/astest/ssnv186g.datg
+%%ASTERDIR%%/astest/ssnv186g.mail
+%%ASTERDIR%%/astest/ssnv186g.mgib
+%%ASTERDIR%%/astest/ssnv186g.para
+%%ASTERDIR%%/astest/ssnv186h.comm
+%%ASTERDIR%%/astest/ssnv186h.datg
+%%ASTERDIR%%/astest/ssnv186h.mail
+%%ASTERDIR%%/astest/ssnv186h.mgib
+%%ASTERDIR%%/astest/ssnv186h.para
+%%ASTERDIR%%/astest/ssnv187a.comm
+%%ASTERDIR%%/astest/ssnv187a.geo
+%%ASTERDIR%%/astest/ssnv187a.msh
+%%ASTERDIR%%/astest/ssnv187a.para
+%%ASTERDIR%%/astest/ssnv187b.comm
+%%ASTERDIR%%/astest/ssnv187b.geo
+%%ASTERDIR%%/astest/ssnv187b.msh
+%%ASTERDIR%%/astest/ssnv187b.para
+%%ASTERDIR%%/astest/ssnv187c.comm
+%%ASTERDIR%%/astest/ssnv187c.geo
+%%ASTERDIR%%/astest/ssnv187c.msh
+%%ASTERDIR%%/astest/ssnv187c.para
+%%ASTERDIR%%/astest/ssnv189a.comm
+%%ASTERDIR%%/astest/ssnv189a.mail
+%%ASTERDIR%%/astest/ssnv189a.para
+%%ASTERDIR%%/astest/ssnv189b.comm
+%%ASTERDIR%%/astest/ssnv189b.mail
+%%ASTERDIR%%/astest/ssnv189b.para
+%%ASTERDIR%%/astest/ssnv189c.comm
+%%ASTERDIR%%/astest/ssnv189c.mail
+%%ASTERDIR%%/astest/ssnv189c.para
%%ASTERDIR%%/astest/ssnv200a.comm
%%ASTERDIR%%/astest/ssnv200a.mail
%%ASTERDIR%%/astest/ssnv200a.para
@@ -4258,6 +4276,11 @@
%%ASTERDIR%%/astest/ssnv504f.datg
%%ASTERDIR%%/astest/ssnv504f.mgib
%%ASTERDIR%%/astest/ssnv504f.para
+%%ASTERDIR%%/astest/ssnv504h.comm
+%%ASTERDIR%%/astest/ssnv504h.datg
+%%ASTERDIR%%/astest/ssnv504h.mail
+%%ASTERDIR%%/astest/ssnv504h.mgib
+%%ASTERDIR%%/astest/ssnv504h.para
%%ASTERDIR%%/astest/ssnv506e.comm
%%ASTERDIR%%/astest/ssnv506e.datg
%%ASTERDIR%%/astest/ssnv506e.mgib
@@ -4265,8 +4288,6 @@
%%ASTERDIR%%/astest/ssnv506f.comm
%%ASTERDIR%%/astest/ssnv506f.mail
%%ASTERDIR%%/astest/ssnv506f.para
-%%ASTERDIR%%/astest/ssnx100a.comm
-%%ASTERDIR%%/astest/ssnx100a.para
%%ASTERDIR%%/astest/ssnx101a.comm
%%ASTERDIR%%/astest/ssnx101a.datg
%%ASTERDIR%%/astest/ssnx101a.mgib
@@ -4643,7 +4664,6 @@
%%ASTERDIR%%/astest/wtnp100a.comm
%%ASTERDIR%%/astest/wtnp100a.datg
%%ASTERDIR%%/astest/wtnp100a.mgib
-%%ASTERDIR%%/astest/wtnp100a.msup
%%ASTERDIR%%/astest/wtnp100a.para
%%ASTERDIR%%/astest/wtnp100b.comm
%%ASTERDIR%%/astest/wtnp100b.datg
@@ -4652,7 +4672,6 @@
%%ASTERDIR%%/astest/wtnp100c.comm
%%ASTERDIR%%/astest/wtnp100c.datg
%%ASTERDIR%%/astest/wtnp100c.mgib
-%%ASTERDIR%%/astest/wtnp100c.msup
%%ASTERDIR%%/astest/wtnp100c.para
%%ASTERDIR%%/astest/wtnp101a.comm
%%ASTERDIR%%/astest/wtnp101a.mail
@@ -4663,7 +4682,6 @@
%%ASTERDIR%%/astest/wtnp102a.comm
%%ASTERDIR%%/astest/wtnp102a.datg
%%ASTERDIR%%/astest/wtnp102a.mgib
-%%ASTERDIR%%/astest/wtnp102a.msup
%%ASTERDIR%%/astest/wtnp102a.para
%%ASTERDIR%%/astest/wtnp102b.comm
%%ASTERDIR%%/astest/wtnp102b.datg
@@ -4863,13 +4881,6 @@
%%ASTERDIR%%/astest/wtnv114f.comm
%%ASTERDIR%%/astest/wtnv114f.mail
%%ASTERDIR%%/astest/wtnv114f.para
-%%ASTERDIR%%/astest/wtnv118a.comm
-%%ASTERDIR%%/astest/wtnv118a.mail
-%%ASTERDIR%%/astest/wtnv118a.msup
-%%ASTERDIR%%/astest/wtnv118a.para
-%%ASTERDIR%%/astest/wtnv118b.comm
-%%ASTERDIR%%/astest/wtnv118b.msup
-%%ASTERDIR%%/astest/wtnv118b.para
%%ASTERDIR%%/astest/wtnv121a.comm
%%ASTERDIR%%/astest/wtnv121a.datg
%%ASTERDIR%%/astest/wtnv121a.mgib
@@ -4937,6 +4948,30 @@
%%ASTERDIR%%/astest/wtnv128b.comm
%%ASTERDIR%%/astest/wtnv128b.mail
%%ASTERDIR%%/astest/wtnv128b.para
+%%ASTERDIR%%/astest/wtnv129a.comm
+%%ASTERDIR%%/astest/wtnv129a.mail
+%%ASTERDIR%%/astest/wtnv129a.para
+%%ASTERDIR%%/astest/wtnv129b.comm
+%%ASTERDIR%%/astest/wtnv129b.mail
+%%ASTERDIR%%/astest/wtnv129b.para
+%%ASTERDIR%%/astest/wtnv130a.comm
+%%ASTERDIR%%/astest/wtnv130a.mail
+%%ASTERDIR%%/astest/wtnv130a.para
+%%ASTERDIR%%/astest/wtnv130b.comm
+%%ASTERDIR%%/astest/wtnv130b.mail
+%%ASTERDIR%%/astest/wtnv130b.para
+%%ASTERDIR%%/astest/wtnv130c.comm
+%%ASTERDIR%%/astest/wtnv130c.mail
+%%ASTERDIR%%/astest/wtnv130c.para
+%%ASTERDIR%%/astest/wtnv130d.comm
+%%ASTERDIR%%/astest/wtnv130d.mail
+%%ASTERDIR%%/astest/wtnv130d.para
+%%ASTERDIR%%/astest/wtnv131a.comm
+%%ASTERDIR%%/astest/wtnv131a.mail
+%%ASTERDIR%%/astest/wtnv131a.para
+%%ASTERDIR%%/astest/wtnv131b.comm
+%%ASTERDIR%%/astest/wtnv131b.mail
+%%ASTERDIR%%/astest/wtnv131b.para
%%ASTERDIR%%/astest/yyyy100a.comm
%%ASTERDIR%%/astest/yyyy100a.mail
%%ASTERDIR%%/astest/yyyy100a.para
@@ -5117,6 +5152,9 @@
%%ASTERDIR%%/astest/zzzz107a.comm
%%ASTERDIR%%/astest/zzzz107a.mail
%%ASTERDIR%%/astest/zzzz107a.para
+%%ASTERDIR%%/astest/zzzz107b.comm
+%%ASTERDIR%%/astest/zzzz107b.mail
+%%ASTERDIR%%/astest/zzzz107b.para
%%ASTERDIR%%/astest/zzzz110a.19
%%ASTERDIR%%/astest/zzzz110a.20
%%ASTERDIR%%/astest/zzzz110a.21
@@ -5299,13 +5337,6 @@
%%ASTERDIR%%/astest/zzzz175a.21
%%ASTERDIR%%/astest/zzzz175a.comm
%%ASTERDIR%%/astest/zzzz175a.para
-%%ASTERDIR%%/astest/zzzz176a.21
-%%ASTERDIR%%/astest/zzzz176a.22
-%%ASTERDIR%%/astest/zzzz176a.23
-%%ASTERDIR%%/astest/zzzz176a.24
-%%ASTERDIR%%/astest/zzzz176a.55
-%%ASTERDIR%%/astest/zzzz176a.56
-%%ASTERDIR%%/astest/zzzz176a.57
%%ASTERDIR%%/astest/zzzz176a.comm
%%ASTERDIR%%/astest/zzzz176a.mail
%%ASTERDIR%%/astest/zzzz176a.msup
@@ -5345,13 +5376,26 @@
%%ASTERDIR%%/astest/zzzz208b.comm
%%ASTERDIR%%/astest/zzzz208b.mail
%%ASTERDIR%%/astest/zzzz208b.para
+%%ASTERDIR%%/astest/zzzz213a.comm
+%%ASTERDIR%%/astest/zzzz213a.datg
+%%ASTERDIR%%/astest/zzzz213a.mgib
+%%ASTERDIR%%/astest/zzzz213a.para
+%%ASTERDIR%%/astest/zzzz215a.22
+%%ASTERDIR%%/astest/zzzz215a.23
+%%ASTERDIR%%/astest/zzzz215a.comm
+%%ASTERDIR%%/astest/zzzz215a.para
+%%ASTERDIR%%/astest/zzzz215b.22
+%%ASTERDIR%%/astest/zzzz215b.23
+%%ASTERDIR%%/astest/zzzz215b.comm
+%%ASTERDIR%%/astest/zzzz215b.para
+%%ASTERDIR%%/astest/zzzz215c.22
+%%ASTERDIR%%/astest/zzzz215c.23
+%%ASTERDIR%%/astest/zzzz215c.comm
+%%ASTERDIR%%/astest/zzzz215c.para
%%ASTERDIR%%/astout.export
%%ASTERDIR%%/bibpyt/Accas/A_AU_MOINS_UN.py
%%ASTERDIR%%/bibpyt/Accas/A_AU_MOINS_UN.pyc
%%ASTERDIR%%/bibpyt/Accas/A_AU_MOINS_UN.pyo
-%%ASTERDIR%%/bibpyt/Accas/A_AU_PLUS_UN.py
-%%ASTERDIR%%/bibpyt/Accas/A_AU_PLUS_UN.pyc
-%%ASTERDIR%%/bibpyt/Accas/A_AU_PLUS_UN.pyo
%%ASTERDIR%%/bibpyt/Accas/A_A_CLASSER.py
%%ASTERDIR%%/bibpyt/Accas/A_A_CLASSER.pyc
%%ASTERDIR%%/bibpyt/Accas/A_A_CLASSER.pyo
@@ -5532,6 +5576,9 @@
%%ASTERDIR%%/bibpyt/Macro/calc_table_ops.py
%%ASTERDIR%%/bibpyt/Macro/calc_table_ops.pyc
%%ASTERDIR%%/bibpyt/Macro/calc_table_ops.pyo
+%%ASTERDIR%%/bibpyt/Macro/creation_donnees_homard.py
+%%ASTERDIR%%/bibpyt/Macro/creation_donnees_homard.pyc
+%%ASTERDIR%%/bibpyt/Macro/creation_donnees_homard.pyo
%%ASTERDIR%%/bibpyt/Macro/defi_cable_bp_ops.py
%%ASTERDIR%%/bibpyt/Macro/defi_cable_bp_ops.pyc
%%ASTERDIR%%/bibpyt/Macro/defi_cable_bp_ops.pyo
@@ -5544,6 +5591,9 @@
%%ASTERDIR%%/bibpyt/Macro/fiabilite_mefisto.py
%%ASTERDIR%%/bibpyt/Macro/fiabilite_mefisto.pyc
%%ASTERDIR%%/bibpyt/Macro/fiabilite_mefisto.pyo
+%%ASTERDIR%%/bibpyt/Macro/gene_vari_alea_ops.py
+%%ASTERDIR%%/bibpyt/Macro/gene_vari_alea_ops.pyc
+%%ASTERDIR%%/bibpyt/Macro/gene_vari_alea_ops.pyo
%%ASTERDIR%%/bibpyt/Macro/impr_fonction_ops.py
%%ASTERDIR%%/bibpyt/Macro/impr_fonction_ops.pyc
%%ASTERDIR%%/bibpyt/Macro/impr_fonction_ops.pyo
@@ -5622,6 +5672,9 @@
%%ASTERDIR%%/bibpyt/Macro/macro_proj_base_ops.py
%%ASTERDIR%%/bibpyt/Macro/macro_proj_base_ops.pyc
%%ASTERDIR%%/bibpyt/Macro/macro_proj_base_ops.pyo
+%%ASTERDIR%%/bibpyt/Macro/post_k1_k2_k3_ops.py
+%%ASTERDIR%%/bibpyt/Macro/post_k1_k2_k3_ops.pyc
+%%ASTERDIR%%/bibpyt/Macro/post_k1_k2_k3_ops.pyo
%%ASTERDIR%%/bibpyt/Macro/reca_algo.py
%%ASTERDIR%%/bibpyt/Macro/reca_algo.pyc
%%ASTERDIR%%/bibpyt/Macro/reca_algo.pyo
@@ -5721,6 +5774,9 @@
%%ASTERDIR%%/bibpyt/Noyau/N_REGLE.py
%%ASTERDIR%%/bibpyt/Noyau/N_REGLE.pyc
%%ASTERDIR%%/bibpyt/Noyau/N_REGLE.pyo
+%%ASTERDIR%%/bibpyt/Noyau/N_SENSIBILITE.py
+%%ASTERDIR%%/bibpyt/Noyau/N_SENSIBILITE.pyc
+%%ASTERDIR%%/bibpyt/Noyau/N_SENSIBILITE.pyo
%%ASTERDIR%%/bibpyt/Noyau/N_SIMP.py
%%ASTERDIR%%/bibpyt/Noyau/N_SIMP.pyc
%%ASTERDIR%%/bibpyt/Noyau/N_SIMP.pyo
@@ -5766,6 +5822,12 @@
%%ASTERDIR%%/bibpyt/Stanley/graphiqueTk.py
%%ASTERDIR%%/bibpyt/Stanley/graphiqueTk.pyc
%%ASTERDIR%%/bibpyt/Stanley/graphiqueTk.pyo
+%%ASTERDIR%%/bibpyt/Stanley/ihm_parametres.py
+%%ASTERDIR%%/bibpyt/Stanley/ihm_parametres.pyc
+%%ASTERDIR%%/bibpyt/Stanley/ihm_parametres.pyo
+%%ASTERDIR%%/bibpyt/Stanley/salomeVisu.py
+%%ASTERDIR%%/bibpyt/Stanley/salomeVisu.pyc
+%%ASTERDIR%%/bibpyt/Stanley/salomeVisu.pyo
%%ASTERDIR%%/bibpyt/Stanley/stanley.py
%%ASTERDIR%%/bibpyt/Stanley/stanley.pyc
%%ASTERDIR%%/bibpyt/Stanley/stanley.pyo
@@ -5775,6 +5837,9 @@
%%ASTERDIR%%/bibpyt/Utilitai/Graph.py
%%ASTERDIR%%/bibpyt/Utilitai/Graph.pyc
%%ASTERDIR%%/bibpyt/Utilitai/Graph.pyo
+%%ASTERDIR%%/bibpyt/Utilitai/Sensibilite.py
+%%ASTERDIR%%/bibpyt/Utilitai/Sensibilite.pyc
+%%ASTERDIR%%/bibpyt/Utilitai/Sensibilite.pyo
%%ASTERDIR%%/bibpyt/Utilitai/Table.py
%%ASTERDIR%%/bibpyt/Utilitai/Table.pyc
%%ASTERDIR%%/bibpyt/Utilitai/Table.pyo
@@ -5875,6 +5940,7 @@
%%ASTERDIR%%/catalo/options/amor_acou.cata
%%ASTERDIR%%/catalo/options/amor_ajou.cata
%%ASTERDIR%%/catalo/options/amor_meca.cata
+%%ASTERDIR%%/catalo/options/amor_meca_abso.cata
%%ASTERDIR%%/catalo/options/ampl_elno_zac.cata
%%ASTERDIR%%/catalo/options/calc_dg.cata
%%ASTERDIR%%/catalo/options/calc_dg_e.cata
@@ -5882,17 +5948,16 @@
%%ASTERDIR%%/catalo/options/calc_dg_f.cata
%%ASTERDIR%%/catalo/options/calc_dg_forc.cata
%%ASTERDIR%%/catalo/options/calc_dg_forc_f.cata
+%%ASTERDIR%%/catalo/options/calc_dgg_e.cata
+%%ASTERDIR%%/catalo/options/calc_dgg_e_f.cata
+%%ASTERDIR%%/catalo/options/calc_dgg_forc.cata
+%%ASTERDIR%%/catalo/options/calc_dgg_forc_f.cata
%%ASTERDIR%%/catalo/options/calc_esti_erre.cata
%%ASTERDIR%%/catalo/options/calc_g.cata
-%%ASTERDIR%%/catalo/options/calc_g_bili.cata
-%%ASTERDIR%%/catalo/options/calc_g_bili_f.cata
%%ASTERDIR%%/catalo/options/calc_g_f.cata
-%%ASTERDIR%%/catalo/options/calc_g_lagr.cata
+%%ASTERDIR%%/catalo/options/calc_g_glob.cata
+%%ASTERDIR%%/catalo/options/calc_g_glob_f.cata
%%ASTERDIR%%/catalo/options/calc_g_lagr_f.cata
-%%ASTERDIR%%/catalo/options/calc_g_lglo.cata
-%%ASTERDIR%%/catalo/options/calc_g_lglo_f.cata
-%%ASTERDIR%%/catalo/options/calc_glag_epsi_f.cata
-%%ASTERDIR%%/catalo/options/calc_glag_epsi_r.cata
%%ASTERDIR%%/catalo/options/calc_k_g.cata
%%ASTERDIR%%/catalo/options/calc_k_g_f.cata
%%ASTERDIR%%/catalo/options/calc_noeu_bord.cata
@@ -5904,6 +5969,7 @@
%%ASTERDIR%%/catalo/options/cara_sect_pout4.cata
%%ASTERDIR%%/catalo/options/cara_sect_pout5.cata
%%ASTERDIR%%/catalo/options/cara_torsion.cata
+%%ASTERDIR%%/catalo/options/cfl_xfem.cata
%%ASTERDIR%%/catalo/options/char_acou_vnor_c.cata
%%ASTERDIR%%/catalo/options/char_alph_zac.cata
%%ASTERDIR%%/catalo/options/char_dlag_evolst.cata
@@ -6027,6 +6093,8 @@
%%ASTERDIR%%/catalo/options/enel_elga.cata
%%ASTERDIR%%/catalo/options/enel_elno_elga.cata
%%ASTERDIR%%/catalo/options/ener_elas.cata
+%%ASTERDIR%%/catalo/options/ener_rela.cata
+%%ASTERDIR%%/catalo/options/ener_rela2.cata
%%ASTERDIR%%/catalo/options/ener_totale.cata
%%ASTERDIR%%/catalo/options/epeq_elno_tuyo.cata
%%ASTERDIR%%/catalo/options/epgr_elga.cata
@@ -6050,11 +6118,12 @@
%%ASTERDIR%%/catalo/options/equi_elno_epme.cata
%%ASTERDIR%%/catalo/options/equi_elno_epsi.cata
%%ASTERDIR%%/catalo/options/equi_elno_sigm.cata
-%%ASTERDIR%%/catalo/options/erre_elga_nore.cata
-%%ASTERDIR%%/catalo/options/erre_elno_elga.cata
-%%ASTERDIR%%/catalo/options/erth_elem_temp_f.cata
-%%ASTERDIR%%/catalo/options/erth_elem_temp_r.cata
-%%ASTERDIR%%/catalo/options/erth_elno_elem.cata
+%%ASTERDIR%%/catalo/options/erre_elem_sigm.cata
+%%ASTERDIR%%/catalo/options/erre_elem_temp_f.cata
+%%ASTERDIR%%/catalo/options/erre_elem_temp_r.cata
+%%ASTERDIR%%/catalo/options/erre_elno_elem.cata
+%%ASTERDIR%%/catalo/options/erre_qizz.cata
+%%ASTERDIR%%/catalo/options/error_lagr.cata
%%ASTERDIR%%/catalo/options/etot_elem.cata
%%ASTERDIR%%/catalo/options/etot_elga.cata
%%ASTERDIR%%/catalo/options/etot_elno_elga.cata
@@ -6070,6 +6139,14 @@
%%ASTERDIR%%/catalo/options/forc_noda.cata
%%ASTERDIR%%/catalo/options/full_meca.cata
%%ASTERDIR%%/catalo/options/full_meca_elas.cata
+%%ASTERDIR%%/catalo/options/g_bili.cata
+%%ASTERDIR%%/catalo/options/g_bili_f.cata
+%%ASTERDIR%%/catalo/options/g_lagr.cata
+%%ASTERDIR%%/catalo/options/g_lagr_epsi_f.cata
+%%ASTERDIR%%/catalo/options/g_lagr_epsi_r.cata
+%%ASTERDIR%%/catalo/options/g_lagr_f.cata
+%%ASTERDIR%%/catalo/options/g_lagr_glob.cata
+%%ASTERDIR%%/catalo/options/g_lagr_glob_f.cata
%%ASTERDIR%%/catalo/options/grad_elga_theta.cata
%%ASTERDIR%%/catalo/options/grad_neut9_r.cata
%%ASTERDIR%%/catalo/options/grad_neut_r.cata
@@ -6081,7 +6158,6 @@
%%ASTERDIR%%/catalo/options/indi_loca_elga.cata
%%ASTERDIR%%/catalo/options/indic_ener.cata
%%ASTERDIR%%/catalo/options/indic_seuil.cata
-%%ASTERDIR%%/catalo/options/indu_mutu.cata
%%ASTERDIR%%/catalo/options/init_mail_vois.cata
%%ASTERDIR%%/catalo/options/init_varc.cata
%%ASTERDIR%%/catalo/options/inte_elno_acti.cata
@@ -6125,6 +6201,7 @@
%%ASTERDIR%%/catalo/options/nspg_nbva.cata
%%ASTERDIR%%/catalo/options/onde_flui.cata
%%ASTERDIR%%/catalo/options/onde_plan.cata
+%%ASTERDIR%%/catalo/options/pas_courant.cata
%%ASTERDIR%%/catalo/options/pilo_pred_defo.cata
%%ASTERDIR%%/catalo/options/pilo_pred_elas.cata
%%ASTERDIR%%/catalo/options/pmpb_elga_sief.cata
@@ -6134,6 +6211,8 @@
%%ASTERDIR%%/catalo/options/pres_elno_imag.cata
%%ASTERDIR%%/catalo/options/pres_elno_reel.cata
%%ASTERDIR%%/catalo/options/proj_alph_zac.cata
+%%ASTERDIR%%/catalo/options/qire_elem_sigm.cata
+%%ASTERDIR%%/catalo/options/qire_elno_elem.cata
%%ASTERDIR%%/catalo/options/radi_elga_sigm.cata
%%ASTERDIR%%/catalo/options/radi_elno_sigm.cata
%%ASTERDIR%%/catalo/options/raph_meca.cata
@@ -6325,6 +6404,12 @@
%%ASTERDIR%%/catalo/typelem/gener_me2fs1.cata
%%ASTERDIR%%/catalo/typelem/gener_me2tr0.cata
%%ASTERDIR%%/catalo/typelem/gener_me2tr1.cata
+%%ASTERDIR%%/catalo/typelem/gener_me3a12.cata
+%%ASTERDIR%%/catalo/typelem/gener_me3a13.cata
+%%ASTERDIR%%/catalo/typelem/gener_me3a32.cata
+%%ASTERDIR%%/catalo/typelem/gener_me3a33.cata
+%%ASTERDIR%%/catalo/typelem/gener_me3a42.cata
+%%ASTERDIR%%/catalo/typelem/gener_me3a43.cata
%%ASTERDIR%%/catalo/typelem/gener_me3d_1.cata
%%ASTERDIR%%/catalo/typelem/gener_me3d_2.cata
%%ASTERDIR%%/catalo/typelem/gener_me3d_3.cata
@@ -6351,9 +6436,13 @@
%%ASTERDIR%%/catalo/typelem/gener_me3h52.cata
%%ASTERDIR%%/catalo/typelem/gener_me3h53.cata
%%ASTERDIR%%/catalo/typelem/gener_me_x.cata
+%%ASTERDIR%%/catalo/typelem/gener_me_x_2.cata
%%ASTERDIR%%/catalo/typelem/gener_me_xh.cata
+%%ASTERDIR%%/catalo/typelem/gener_me_xh_2.cata
%%ASTERDIR%%/catalo/typelem/gener_me_xht.cata
+%%ASTERDIR%%/catalo/typelem/gener_me_xht_2.cata
%%ASTERDIR%%/catalo/typelem/gener_me_xt.cata
+%%ASTERDIR%%/catalo/typelem/gener_me_xt_2.cata
%%ASTERDIR%%/catalo/typelem/gener_meaa11.cata
%%ASTERDIR%%/catalo/typelem/gener_meaa12.cata
%%ASTERDIR%%/catalo/typelem/gener_meaa21.cata
@@ -6375,8 +6464,6 @@
%%ASTERDIR%%/catalo/typelem/gener_meah42.cata
%%ASTERDIR%%/catalo/typelem/gener_meah51.cata
%%ASTERDIR%%/catalo/typelem/gener_meah52.cata
-%%ASTERDIR%%/catalo/typelem/gener_meapp2.cata
-%%ASTERDIR%%/catalo/typelem/gener_measg2.cata
%%ASTERDIR%%/catalo/typelem/gener_meax_1.cata
%%ASTERDIR%%/catalo/typelem/gener_meax_2.cata
%%ASTERDIR%%/catalo/typelem/gener_meaxf1.cata
@@ -6387,6 +6474,10 @@
%%ASTERDIR%%/catalo/typelem/gener_mecap1.cata
%%ASTERDIR%%/catalo/typelem/gener_mecpg2.cata
%%ASTERDIR%%/catalo/typelem/gener_mecpl2.cata
+%%ASTERDIR%%/catalo/typelem/gener_mecpl2_x.cata
+%%ASTERDIR%%/catalo/typelem/gener_mecpl2_xh.cata
+%%ASTERDIR%%/catalo/typelem/gener_mecpl2_xht.cata
+%%ASTERDIR%%/catalo/typelem/gener_mecpl2_xt.cata
%%ASTERDIR%%/catalo/typelem/gener_mecq31.cata
%%ASTERDIR%%/catalo/typelem/gener_mecq32.cata
%%ASTERDIR%%/catalo/typelem/gener_mecqd1.cata
@@ -6419,6 +6510,10 @@
%%ASTERDIR%%/catalo/typelem/gener_medpg2.cata
%%ASTERDIR%%/catalo/typelem/gener_medpl1.cata
%%ASTERDIR%%/catalo/typelem/gener_medpl2.cata
+%%ASTERDIR%%/catalo/typelem/gener_medpl2_x.cata
+%%ASTERDIR%%/catalo/typelem/gener_medpl2_xh.cata
+%%ASTERDIR%%/catalo/typelem/gener_medpl2_xht.cata
+%%ASTERDIR%%/catalo/typelem/gener_medpl2_xt.cata
%%ASTERDIR%%/catalo/typelem/gener_medst1.cata
%%ASTERDIR%%/catalo/typelem/gener_medtr0.cata
%%ASTERDIR%%/catalo/typelem/gener_medtr1.cata
@@ -6445,7 +6540,6 @@
%%ASTERDIR%%/catalo/typelem/gener_th3dd2.cata
%%ASTERDIR%%/catalo/typelem/gener_th3dd3.cata
%%ASTERDIR%%/catalo/typelem/gener_thax_1.cata
-%%ASTERDIR%%/catalo/typelem/gener_thax_2.cata
%%ASTERDIR%%/catalo/typelem/gener_thaxd1.cata
%%ASTERDIR%%/catalo/typelem/gener_thaxd2.cata
%%ASTERDIR%%/catalo/typelem/gener_thaxf1.cata
@@ -6468,8 +6562,6 @@
%%ASTERDIR%%/catalo/typelem/met3seg4.cata
%%ASTERDIR%%/catalo/typelem/source_nod_2d.cata
%%ASTERDIR%%/catalo/typelem/source_nod_3d.cata
-%%ASTERDIR%%/catalo/typelem/thaxtr6.cata
-%%ASTERDIR%%/catalo/typelem/thpltr6.cata
%%ASTERDIR%%/catapy/commande/affe_cara_elem.capy
%%ASTERDIR%%/catapy/commande/affe_char_acou.capy
%%ASTERDIR%%/catapy/commande/affe_char_cine.capy
@@ -6498,8 +6590,7 @@
%%ASTERDIR%%/catapy/commande/calc_fonc_interp.capy
%%ASTERDIR%%/catapy/commande/calc_fonction.capy
%%ASTERDIR%%/catapy/commande/calc_forc_ajou.capy
-%%ASTERDIR%%/catapy/commande/calc_g_local_t.capy
-%%ASTERDIR%%/catapy/commande/calc_g_theta_t.capy
+%%ASTERDIR%%/catapy/commande/calc_g.capy
%%ASTERDIR%%/catapy/commande/calc_inte_spec.capy
%%ASTERDIR%%/catapy/commande/calc_matr_ajou.capy
%%ASTERDIR%%/catapy/commande/calc_matr_elem.capy
@@ -6549,11 +6640,9 @@
%%ASTERDIR%%/catapy/commande/defi_spec_turb.capy
%%ASTERDIR%%/catapy/commande/defi_squelette.capy
%%ASTERDIR%%/catapy/commande/defi_texture.capy
-%%ASTERDIR%%/catapy/commande/defi_ther_joule.capy
%%ASTERDIR%%/catapy/commande/defi_trc.capy
%%ASTERDIR%%/catapy/commande/depl_interne.capy
%%ASTERDIR%%/catapy/commande/detruire.capy
-%%ASTERDIR%%/catapy/commande/dist_lign_3d.capy
%%ASTERDIR%%/catapy/commande/dyna_alea_modal.capy
%%ASTERDIR%%/catapy/commande/dyna_line_harm.capy
%%ASTERDIR%%/catapy/commande/dyna_line_tran.capy
@@ -6577,7 +6666,6 @@
%%ASTERDIR%%/catapy/commande/impr_charge.capy
%%ASTERDIR%%/catapy/commande/impr_classi.capy
%%ASTERDIR%%/catapy/commande/impr_co.capy
-%%ASTERDIR%%/catapy/commande/impr_fico_homa.capy
%%ASTERDIR%%/catapy/commande/impr_fonction.capy
%%ASTERDIR%%/catapy/commande/impr_gene.capy
%%ASTERDIR%%/catapy/commande/impr_jeveux.capy
@@ -6653,7 +6741,6 @@
%%ASTERDIR%%/catapy/commande/post_mail_xfem.capy
%%ASTERDIR%%/catapy/commande/post_rccm.capy
%%ASTERDIR%%/catapy/commande/post_releve_t.capy
-%%ASTERDIR%%/catapy/commande/post_simplifie.capy
%%ASTERDIR%%/catapy/commande/post_usure.capy
%%ASTERDIR%%/catapy/commande/post_zac.capy
%%ASTERDIR%%/catapy/commande/poursuite.capy
@@ -6666,6 +6753,7 @@
%%ASTERDIR%%/catapy/commande/proj_mesu_modal.capy
%%ASTERDIR%%/catapy/commande/proj_spec_base.capy
%%ASTERDIR%%/catapy/commande/proj_vect_base.capy
+%%ASTERDIR%%/catapy/commande/propa_xfem.capy
%%ASTERDIR%%/catapy/commande/reca_weibull.capy
%%ASTERDIR%%/catapy/commande/recu_fonction.capy
%%ASTERDIR%%/catapy/commande/recu_gene.capy
@@ -6696,263 +6784,139 @@
%%ASTERDIR%%/elements
%%ASTERDIR%%/etude/forma01a.17
%%ASTERDIR%%/etude/forma01a.18
-%%ASTERDIR%%/etude/forma01a.code
%%ASTERDIR%%/etude/forma01a.comm
%%ASTERDIR%%/etude/forma01a.datg
-%%ASTERDIR%%/etude/forma01a.export
%%ASTERDIR%%/etude/forma01a.geo
%%ASTERDIR%%/etude/forma01a.mail
-%%ASTERDIR%%/etude/forma01a.mess
%%ASTERDIR%%/etude/forma01a.mgib
%%ASTERDIR%%/etude/forma01a.para
-%%ASTERDIR%%/etude/forma01a.resu
-%%ASTERDIR%%/etude/forma01b.code
%%ASTERDIR%%/etude/forma01b.comm
%%ASTERDIR%%/etude/forma01b.datg
-%%ASTERDIR%%/etude/forma01b.export
%%ASTERDIR%%/etude/forma01b.mail
-%%ASTERDIR%%/etude/forma01b.mess
%%ASTERDIR%%/etude/forma01b.mgib
%%ASTERDIR%%/etude/forma01b.para
-%%ASTERDIR%%/etude/forma01b.resu
%%ASTERDIR%%/etude/forma01c.17
%%ASTERDIR%%/etude/forma01c.18
%%ASTERDIR%%/etude/forma01c.21
-%%ASTERDIR%%/etude/forma01c.code
%%ASTERDIR%%/etude/forma01c.com1
%%ASTERDIR%%/etude/forma01c.com2
%%ASTERDIR%%/etude/forma01c.comm
%%ASTERDIR%%/etude/forma01c.datg
-%%ASTERDIR%%/etude/forma01c.export
%%ASTERDIR%%/etude/forma01c.mail
-%%ASTERDIR%%/etude/forma01c.mess
%%ASTERDIR%%/etude/forma01c.mgib
%%ASTERDIR%%/etude/forma01c.para
-%%ASTERDIR%%/etude/forma01c.resu
-%%ASTERDIR%%/etude/forma01d.code
%%ASTERDIR%%/etude/forma01d.comm
%%ASTERDIR%%/etude/forma01d.datg
-%%ASTERDIR%%/etude/forma01d.export
-%%ASTERDIR%%/etude/forma01d.mess
%%ASTERDIR%%/etude/forma01d.mgib
%%ASTERDIR%%/etude/forma01d.para
-%%ASTERDIR%%/etude/forma01d.resu
-%%ASTERDIR%%/etude/forma01e.code
%%ASTERDIR%%/etude/forma01e.comm
%%ASTERDIR%%/etude/forma01e.datg
-%%ASTERDIR%%/etude/forma01e.export
%%ASTERDIR%%/etude/forma01e.mail
-%%ASTERDIR%%/etude/forma01e.mess
%%ASTERDIR%%/etude/forma01e.mgib
%%ASTERDIR%%/etude/forma01e.para
-%%ASTERDIR%%/etude/forma01e.resu
-%%ASTERDIR%%/etude/forma01f.code
%%ASTERDIR%%/etude/forma01f.comm
%%ASTERDIR%%/etude/forma01f.datg
-%%ASTERDIR%%/etude/forma01f.export
%%ASTERDIR%%/etude/forma01f.geo
%%ASTERDIR%%/etude/forma01f.mail
-%%ASTERDIR%%/etude/forma01f.mess
%%ASTERDIR%%/etude/forma01f.mgib
%%ASTERDIR%%/etude/forma01f.msh
%%ASTERDIR%%/etude/forma01f.para
-%%ASTERDIR%%/etude/forma01f.resu
-%%ASTERDIR%%/etude/forma01g.code
%%ASTERDIR%%/etude/forma01g.comm
%%ASTERDIR%%/etude/forma01g.datg
-%%ASTERDIR%%/etude/forma01g.export
%%ASTERDIR%%/etude/forma01g.geo
%%ASTERDIR%%/etude/forma01g.mail
-%%ASTERDIR%%/etude/forma01g.mess
%%ASTERDIR%%/etude/forma01g.mgib
%%ASTERDIR%%/etude/forma01g.msh
%%ASTERDIR%%/etude/forma01g.para
-%%ASTERDIR%%/etude/forma01g.resu
-%%ASTERDIR%%/etude/forma01h.code
%%ASTERDIR%%/etude/forma01h.comm
%%ASTERDIR%%/etude/forma01h.datg
-%%ASTERDIR%%/etude/forma01h.export
%%ASTERDIR%%/etude/forma01h.geo
-%%ASTERDIR%%/etude/forma01h.mess
%%ASTERDIR%%/etude/forma01h.mgib
%%ASTERDIR%%/etude/forma01h.msh
%%ASTERDIR%%/etude/forma01h.para
-%%ASTERDIR%%/etude/forma01h.resu
-%%ASTERDIR%%/etude/forma02a.code
%%ASTERDIR%%/etude/forma02a.comm
-%%ASTERDIR%%/etude/forma02a.export
%%ASTERDIR%%/etude/forma02a.mail
-%%ASTERDIR%%/etude/forma02a.mess
%%ASTERDIR%%/etude/forma02a.para
-%%ASTERDIR%%/etude/forma02a.resu
-%%ASTERDIR%%/etude/forma02b.code
%%ASTERDIR%%/etude/forma02b.comm
-%%ASTERDIR%%/etude/forma02b.export
%%ASTERDIR%%/etude/forma02b.mail
-%%ASTERDIR%%/etude/forma02b.mess
%%ASTERDIR%%/etude/forma02b.para
-%%ASTERDIR%%/etude/forma02b.resu
-%%ASTERDIR%%/etude/forma03a.code
%%ASTERDIR%%/etude/forma03a.com1
%%ASTERDIR%%/etude/forma03a.comm
%%ASTERDIR%%/etude/forma03a.datg
-%%ASTERDIR%%/etude/forma03a.export
-%%ASTERDIR%%/etude/forma03a.mess
%%ASTERDIR%%/etude/forma03a.mgib
%%ASTERDIR%%/etude/forma03a.para
-%%ASTERDIR%%/etude/forma03a.resu
-%%ASTERDIR%%/etude/forma03b.code
%%ASTERDIR%%/etude/forma03b.com1
%%ASTERDIR%%/etude/forma03b.comm
%%ASTERDIR%%/etude/forma03b.datg
-%%ASTERDIR%%/etude/forma03b.export
%%ASTERDIR%%/etude/forma03b.mail
-%%ASTERDIR%%/etude/forma03b.mess
%%ASTERDIR%%/etude/forma03b.mgib
%%ASTERDIR%%/etude/forma03b.para
-%%ASTERDIR%%/etude/forma03b.resu
-%%ASTERDIR%%/etude/forma04a.code
%%ASTERDIR%%/etude/forma04a.comm
-%%ASTERDIR%%/etude/forma04a.export
%%ASTERDIR%%/etude/forma04a.mail
-%%ASTERDIR%%/etude/forma04a.mess
%%ASTERDIR%%/etude/forma04a.para
-%%ASTERDIR%%/etude/forma04a.resu
-%%ASTERDIR%%/etude/forma04b.code
%%ASTERDIR%%/etude/forma04b.comm
-%%ASTERDIR%%/etude/forma04b.export
%%ASTERDIR%%/etude/forma04b.mail
-%%ASTERDIR%%/etude/forma04b.mess
%%ASTERDIR%%/etude/forma04b.para
-%%ASTERDIR%%/etude/forma04b.resu
-%%ASTERDIR%%/etude/forma04c.code
%%ASTERDIR%%/etude/forma04c.comm
-%%ASTERDIR%%/etude/forma04c.export
%%ASTERDIR%%/etude/forma04c.mail
-%%ASTERDIR%%/etude/forma04c.mess
%%ASTERDIR%%/etude/forma04c.para
-%%ASTERDIR%%/etude/forma04c.resu
-%%ASTERDIR%%/etude/forma05a.code
%%ASTERDIR%%/etude/forma05a.comm
-%%ASTERDIR%%/etude/forma05a.export
%%ASTERDIR%%/etude/forma05a.mail
-%%ASTERDIR%%/etude/forma05a.mess
%%ASTERDIR%%/etude/forma05a.para
-%%ASTERDIR%%/etude/forma05a.resu
%%ASTERDIR%%/etude/forma05b.21
-%%ASTERDIR%%/etude/forma05b.code
%%ASTERDIR%%/etude/forma05b.comm
-%%ASTERDIR%%/etude/forma05b.export
%%ASTERDIR%%/etude/forma05b.mail
-%%ASTERDIR%%/etude/forma05b.mess
%%ASTERDIR%%/etude/forma05b.para
-%%ASTERDIR%%/etude/forma05b.resu
-%%ASTERDIR%%/etude/forma06a.code
%%ASTERDIR%%/etude/forma06a.comm
%%ASTERDIR%%/etude/forma06a.datg
-%%ASTERDIR%%/etude/forma06a.export
-%%ASTERDIR%%/etude/forma06a.mess
%%ASTERDIR%%/etude/forma06a.mgib
%%ASTERDIR%%/etude/forma06a.para
-%%ASTERDIR%%/etude/forma06a.resu
-%%ASTERDIR%%/etude/forma06b.code
%%ASTERDIR%%/etude/forma06b.comm
%%ASTERDIR%%/etude/forma06b.datg
-%%ASTERDIR%%/etude/forma06b.export
-%%ASTERDIR%%/etude/forma06b.mess
%%ASTERDIR%%/etude/forma06b.mgib
%%ASTERDIR%%/etude/forma06b.para
-%%ASTERDIR%%/etude/forma06b.resu
-%%ASTERDIR%%/etude/forma08a.code
%%ASTERDIR%%/etude/forma08a.comm
%%ASTERDIR%%/etude/forma08a.datg
-%%ASTERDIR%%/etude/forma08a.export
-%%ASTERDIR%%/etude/forma08a.mess
%%ASTERDIR%%/etude/forma08a.mgib
%%ASTERDIR%%/etude/forma08a.para
-%%ASTERDIR%%/etude/forma08a.resu
-%%ASTERDIR%%/etude/forma08b.code
%%ASTERDIR%%/etude/forma08b.comm
%%ASTERDIR%%/etude/forma08b.datg
-%%ASTERDIR%%/etude/forma08b.export
-%%ASTERDIR%%/etude/forma08b.mess
%%ASTERDIR%%/etude/forma08b.mgib
%%ASTERDIR%%/etude/forma08b.para
-%%ASTERDIR%%/etude/forma08b.resu
-%%ASTERDIR%%/etude/forma09a.code
%%ASTERDIR%%/etude/forma09a.comm
%%ASTERDIR%%/etude/forma09a.datg
-%%ASTERDIR%%/etude/forma09a.export
%%ASTERDIR%%/etude/forma09a.mail
-%%ASTERDIR%%/etude/forma09a.mess
%%ASTERDIR%%/etude/forma09a.mgib
%%ASTERDIR%%/etude/forma09a.para
-%%ASTERDIR%%/etude/forma09a.resu
-%%ASTERDIR%%/etude/forma09b.code
%%ASTERDIR%%/etude/forma09b.comm
%%ASTERDIR%%/etude/forma09b.datg
-%%ASTERDIR%%/etude/forma09b.export
-%%ASTERDIR%%/etude/forma09b.mess
%%ASTERDIR%%/etude/forma09b.mgib
%%ASTERDIR%%/etude/forma09b.para
-%%ASTERDIR%%/etude/forma09b.resu
-%%ASTERDIR%%/etude/forma11a.code
%%ASTERDIR%%/etude/forma11a.comm
-%%ASTERDIR%%/etude/forma11a.export
%%ASTERDIR%%/etude/forma11a.mail
-%%ASTERDIR%%/etude/forma11a.mess
%%ASTERDIR%%/etude/forma11a.para
-%%ASTERDIR%%/etude/forma11a.resu
-%%ASTERDIR%%/etude/forma11b.code
%%ASTERDIR%%/etude/forma11b.comm
-%%ASTERDIR%%/etude/forma11b.export
%%ASTERDIR%%/etude/forma11b.mail
-%%ASTERDIR%%/etude/forma11b.mess
%%ASTERDIR%%/etude/forma11b.para
-%%ASTERDIR%%/etude/forma11b.resu
-%%ASTERDIR%%/etude/forma11c.code
%%ASTERDIR%%/etude/forma11c.comm
-%%ASTERDIR%%/etude/forma11c.export
%%ASTERDIR%%/etude/forma11c.mail
-%%ASTERDIR%%/etude/forma11c.mess
%%ASTERDIR%%/etude/forma11c.para
-%%ASTERDIR%%/etude/forma11c.resu
-%%ASTERDIR%%/etude/forma11d.code
%%ASTERDIR%%/etude/forma11d.comm
-%%ASTERDIR%%/etude/forma11d.export
%%ASTERDIR%%/etude/forma11d.mail
-%%ASTERDIR%%/etude/forma11d.mess
%%ASTERDIR%%/etude/forma11d.para
-%%ASTERDIR%%/etude/forma11d.resu
-%%ASTERDIR%%/etude/forma12a.code
%%ASTERDIR%%/etude/forma12a.comm
-%%ASTERDIR%%/etude/forma12a.export
%%ASTERDIR%%/etude/forma12a.mail
-%%ASTERDIR%%/etude/forma12a.mess
%%ASTERDIR%%/etude/forma12a.para
-%%ASTERDIR%%/etude/forma12a.resu
-%%ASTERDIR%%/etude/forma12b.code
%%ASTERDIR%%/etude/forma12b.comm
-%%ASTERDIR%%/etude/forma12b.export
%%ASTERDIR%%/etude/forma12b.mail
-%%ASTERDIR%%/etude/forma12b.mess
%%ASTERDIR%%/etude/forma12b.para
-%%ASTERDIR%%/etude/forma12b.resu
%%ASTERDIR%%/etude/forma12c.22
-%%ASTERDIR%%/etude/forma12c.code
%%ASTERDIR%%/etude/forma12c.comm
-%%ASTERDIR%%/etude/forma12c.export
%%ASTERDIR%%/etude/forma12c.mail
-%%ASTERDIR%%/etude/forma12c.mess
%%ASTERDIR%%/etude/forma12c.para
-%%ASTERDIR%%/etude/forma12c.resu
-%%ASTERDIR%%/etude/forma12d.code
%%ASTERDIR%%/etude/forma12d.comm
-%%ASTERDIR%%/etude/forma12d.export
%%ASTERDIR%%/etude/forma12d.mail
-%%ASTERDIR%%/etude/forma12d.mess
%%ASTERDIR%%/etude/forma12d.para
-%%ASTERDIR%%/etude/forma12d.resu
%%ASTERDIR%%/etude/liste_etude
%%ASTERDIR%%/forma01a.export
%%ASTERDIR%%/materiau/A42_REF_A.NOMI