forked from PierSaik/RTE-MSDS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
MachineDomain.bat
45 lines (37 loc) · 1.59 KB
/
MachineDomain.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
@echo off
REM Copyright (c) 2016, Pierre Saikaly ([email protected])
REM Copyright (c) 2017, RTE (Author: Frederic Troalen)
REM This Source Code Form is subject to the terms of the Mozilla Public
REM License, v. 2.0. If a copy of the MPL was not distributed with this
REM file, You can obtain one at http://mozilla.org/MPL/2.0/.
cls
echo #=======================================================#
echo # #
echo # RECHERCHE DU DOMAINE DE SIMULATION STABLE #
echo # #
echo #=======================================================#
echo.
echo #=======================INFORMATION=====================#
echo # #
echo # Vous devez utiliser ce programme dans le repertoire #
echo # contenant un fichier .dta et les regulateurs associes #
echo # aux machine ainsi qu'un dictionnaire #
echo # #
echo #=======================================================#
echo.
set /p RefdtaFile= Indiquer le fichier .dta :
echo.
set /p generatorsFile= Indiquer le fichier contenant les generateurs a traiter :
echo.
set /p dictFile= Indiquer le fichier dictionnaire :
echo.
echo Les generateurs a traiter sont :
type %generatorsFile%
echo.
echo.
echo Confirmer ?
pause
python ./IndusMachineDomain.py %RefdtaFile% %generatorsFile% %dictFile%
pause
python ./IndusMachineDomain2.py %RefdtaFile% %generatorsFile% %dictFile%
pause