Skip to content

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
luca7084 committed Jun 29, 2023
1 parent 36884f6 commit 434ced4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions rocket_twin/drivers/fueling_rocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ def __init__(self, name: str, w_out, dt, owner: Optional["System"] = None, **kwa
init = {
"rocket.dyn.switch": False,
"rocket.tank.w_out_temp": 0.0,
"pipe.is_open" : True,
"g_tank.w_in": 0.0,
"g_tank.w_out_temp": w_out,
}
Expand Down
2 changes: 1 addition & 1 deletion rocket_twin/drivers/vertical_flying_rocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def __init__(self, name: str, w_out, dt, owner: Optional["System"] = None, **kwa
init = {
"rocket.dyn.switch": True,
"g_tank.w_in": 0.0,
"g_tank.w_out_temp": 0.0,
"pipe.is_open": False,
"rocket.tank.w_out_temp": w_out,
}

Expand Down

0 comments on commit 434ced4

Please sign in to comment.