mahmood19227 1 anno fa
parent
commit
8619d976a7
3 ha cambiato i file con 6 aggiunte e 4 eliminazioni
  1. +2
    -2
      data_out.json
  2. +1
    -1
      redisContent.json
  3. +3
    -1
      simulatorManager.py

+ 2
- 2
data_out.json Vedi File

@@ -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
File diff soppresso perché troppo grande
Vedi File


+ 3
- 1
simulatorManager.py Vedi File

@@ -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)

Caricamento…
Annulla
Salva