1 |
#!/bin/sh |
2 |
|
3 |
ARCH=$($DEVROOT/Util/buildUtil/getarch) |
4 |
|
5 |
echo "*********************************" |
6 |
echo "Exemple de calcul d'optimisation " |
7 |
echo " fait sur un support et un pont " |
8 |
echo "*********************************" |
9 |
|
10 |
$DEVROOT/magic/app/carte/bin/$ARCH/carte -fichier support.magic -fichout carte.ctt -dg 5 -fechantillonage 20 -festimation 1 -typecarte 0 |
11 |
$DEVROOT/magic/app/mailleurbloc/bin/$ARCH/mailleurbloc -entier support.magic -bloc support_bloc.magic -carte carte.ctt -numgeoentier 0 -numgeobloc 0 |
12 |
|
13 |
$DEVROOT/magic/app/carte/bin/$ARCH/carte -fichier pont.magic -fichout carte2.ctt -dg 0.5 -fechantillonage 20 -festimation 1 -typecarte 0 |
14 |
$DEVROOT/magic/app/mailleurbloc/bin/$ARCH/mailleurbloc -entier pont.magic -bloc pont_bloc.magic -carte carte2.ctt -numgeoentier 0 -numgeobloc 0 |
15 |
|
16 |
$DEVROOT/magic/app/transfert/bin/$ARCH/transfert -file support.magic -mesh 381 -degre 1 -fem |
17 |
$DEVROOT/magic/app/transfert/bin/$ARCH/transfert support.magic |
18 |
$DEVROOT/magic/app/transfert/bin/$ARCH/transfert support_bloc.magic |
19 |
$DEVROOT/magic/app/transfert/bin/$ARCH/transfert -file support.magic -unite 0.001 -coderesu 00000011 -magicoptis |
20 |
|
21 |
$DEVROOT/magic/app/transfert/bin/$ARCH/transfert -file pont.magic -mesh 327 -degre 1 -fem |
22 |
$DEVROOT/magic/app/transfert/bin/$ARCH/transfert pont.magic |
23 |
$DEVROOT/magic/app/transfert/bin/$ARCH/transfert pont_bloc.magic |
24 |
$DEVROOT/magic/app/transfert/bin/$ARCH/transfert -file pont.magic -unite 1.0 -coderesu 00000011 -magicoptis |