Salome HOME
Test TNC ok :-)
[modules/adao.git] / src / tests / daSalome / test_aster_zzzz159a_init_parameters.py.in
1 #!/usr/bin/python
2 # -*- coding: iso-8859-1 -*-
3
4 import os
5
6 # Ce script contient les information nécessaires à l'exécution
7 # de l'étude
8
9 init_data = {}
10
11 # Variables de base
12 init_data['ASTER_ROOT'] = os.environ['ASTER_ROOT']
13 init_data['debug'] = False
14 init_data['python_version'] = "python@PYTHON_VERSION@"
15 init_data['SOURCES_ROOT'] = "@prefix@" + '/tests/daSalome'
16
17 # Partie contenant les parametres de l'étude
18 init_data['export'] = "@prefix@" + '/tests/daSalome/zzzz159a.export.esclave'
19
20 import Numeric
21 parametres =[['YOUN__',100000.,50000.,500000.],['DSDE__',1000.,500.,10000.],['SIGY__',30.,5.,500.]]
22 calcul = [['REPONSE1','INST','SIYY'],['REPONSE2','INST','V1']]
23 experience=[     Numeric.array([[0.00000E+00  , 0.00000E+00 ],
24                               [5.00000E-02  , 5.00000E+01 ],
25                               [1.00000E-01  , 1.00000E+02 ],
26                               [1.50000E-01  , 1.50000E+02 ],
27                               [2.00000E-01  , 2.00000E+02 ],
28                               [2.50000E-01  , 2.00500E+02 ],
29                               [3.00000E-01  , 2.01000E+02 ],
30                               [3.50000E-01  , 2.01500E+02 ],
31                               [4.00000E-01  , 2.02000E+02 ],
32                               [4.50000E-01  , 2.02500E+02 ],
33                               [5.00000E-01  , 2.03000E+02 ],
34                               [5.50000E-01  , 2.03500E+02 ],
35                               [6.00000E-01  , 2.04000E+02 ],
36                               [6.50000E-01  , 2.04500E+02 ],
37                               [7.00000E-01  , 2.05000E+02 ],
38                               [7.50000E-01  , 2.05500E+02 ],
39                               [8.00000E-01  , 2.06000E+02 ],
40                               [8.50000E-01  , 2.06500E+02 ],
41                               [9.00000E-01  , 2.07000E+02 ],
42                               [9.50000E-01  , 2.07500E+02 ],
43                               [1.00000E+00  , 2.08000E+02 ]]),
44                  Numeric.array([[0.00000E+00  , 0.00000E+00 ],
45                               [5.00000E-02  , 0.00000E+00 ],
46                               [1.00000E-01  , 0.00000E+00 ],
47                               [1.50000E-01  , 0.00000E+00 ],
48                               [2.00000E-01  , 0.00000E+00 ],
49                               [2.50000E-01  , 2.47500E-04 ],
50                               [3.00000E-01  , 4.95000E-04 ],
51                               [3.50000E-01  , 7.42500E-04 ],
52                               [4.00000E-01  , 9.90000E-04 ],
53                               [4.50000E-01  , 1.23750E-03 ],
54                               [5.00000E-01  , 1.48500E-03 ],
55                               [5.50000E-01  , 1.73250E-03 ],
56                               [6.00000E-01  , 1.98000E-03 ],
57                               [6.50000E-01  , 2.22750E-03 ],
58                               [7.00000E-01  , 2.47500E-03 ],
59                               [7.50000E-01  , 2.72250E-03 ],
60                               [8.00000E-01  , 2.97000E-03 ],
61                               [8.50000E-01  , 3.21750E-03 ],
62                               [9.00000E-01  , 3.46500E-03 ],
63                               [9.50000E-01  , 3.71250E-03 ],
64                               [1.00000E+00  , 3.96000E-03 ]]) ]
65
66 init_data['parametres'] = parametres
67 init_data['calcul'] = calcul
68 init_data['experience'] = experience
69