mahmood19227 před 1 rokem
rodič
revize
8619d976a7
3 změnil soubory, kde provedl 6 přidání a 4 odebrání
  1. +2
    -2
      data_out.json
  2. +1
    -1
      redisContent.json
  3. +3
    -1
      simulatorManager.py

+ 2
- 2
data_out.json Zobrazit soubor

@@ -1,5 +1,5 @@
{
"step": 502,
"step": 1,
"Warnings": {
"PumpWithKellyDisconnected": false,
"PumpWithTopdriveDisconnected": false,
@@ -20,7 +20,7 @@
"DrillPipeParted": false,
"TripWithSlipsSet": false,
"Blowout": false,
"UndergroundBlowout": true,
"UndergroundBlowout": false,
"MaximumWellDepthExceeded": false,
"CrownCollision": false,
"FloorCollision": false,


+ 1
- 1
redisContent.json
Diff nebyl zobrazen, protože je příliš veliký
Zobrazit soubor


+ 3
- 1
simulatorManager.py Zobrazit soubor

@@ -35,5 +35,7 @@ if __name__=='__main__':
process_exists = True
break
if not process_exists:
subprocess.Popen(['./SimulationCore2', redis_address,str(redis_port),redis_password,simulation_id,str(log_level),str(stepTime)], cwd=work_dir)
command = ['./SimulationCore2', redis_address,str(redis_port),redis_password,simulation_id,str(log_level),str(stepTime)]
print(command)
subprocess.Popen(command, cwd=work_dir)
time.sleep(5)

Načítá se…
Zrušit
Uložit