Skip to content

Commit

Permalink
Corrected mistakes in import names
Browse files Browse the repository at this point in the history
  • Loading branch information
dug20 committed Mar 6, 2022
1 parent f54c151 commit 711a4af
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions cusfbamboo/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
import warnings
#import time

import bamboo.rao
import bamboo.isen
import bamboo.hx
import bamboo.circuit
import cusfbamboo.rao
import cusfbamboo.isen
import cusfbamboo.hx
import cusfbamboo.circuit

# Constants
R_BAR = 8.3144621e3 # Universal gas constant (J/K/kmol)
Expand Down
2 changes: 1 addition & 1 deletion cusfbamboo/hx.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
- 'w': At the wall (e.g. T_cw is the wall temperature on the cold side)
"""

from bamboo.circuit import ThermalCircuit
from cusfbamboo.circuit import ThermalCircuit

class HXSolver:
def __init__(self, T_c_in, T_h, p_c_in, cp_c, mdot_c, V_c, A_c, Rdx, extra_dQ_dx, dp_dx_f, x_start, dx, x_end):
Expand Down

0 comments on commit 711a4af

Please sign in to comment.