Ver código fonte

First Demo

master
mahmood19227 1 ano atrás
pai
commit
8619d976a7
3 arquivos alterados com 6 adições e 4 exclusões
  1. +2
    -2
      data_out.json
  2. +1
    -1
      redisContent.json
  3. +3
    -1
      simulatorManager.py

+ 2
- 2
data_out.json Ver arquivo

@@ -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
Diferenças do arquivo suprimidas por serem muito extensas
Ver arquivo


+ 3
- 1
simulatorManager.py Ver arquivo

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

Carregando…
Cancelar
Salvar