Skip to content

Commit

Permalink
correct default value
Browse files Browse the repository at this point in the history
  • Loading branch information
joyxyz1994 committed Feb 17, 2025
1 parent 8a93098 commit 72fae35
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions qsdsan/processes/_adm1_p_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,8 +312,8 @@ class ADM1_p_extension(ADM1):
K_A : float, optional
VFAs half saturation coefficient for PHA storage [kg COD/m3]. The default is 0.004.
K_PP : float, optional
Half saturation coefficient for polyphosphate [kmol PP/kg PAO COD].
The default is 0.00032.
Half saturation coefficient for polyphosphate [kg P/kg PAO COD].
The default is 0.01.
q_PHA : float, optional
Rate constant for storage of PHA [d^(-1)]. The default is 3.
b_PAO : float, optional
Expand Down Expand Up @@ -422,7 +422,7 @@ def __new__(cls, components=None, path=None,
q_dis=0.5, q_ch_hyd=10, q_pr_hyd=10, q_li_hyd=10,
k_su=30, k_aa=50, k_fa=6, k_c4=20, k_pro=13, k_ac=8, k_h2=35,
K_su=0.5, K_aa=0.3, K_fa=0.4, K_c4=0.2, K_pro=0.1, K_ac=0.15, K_h2=7e-6,
K_A=4e-3, K_PP=32e-5,
K_A=4e-3, K_PP=0.01,
b_su=0.02, b_aa=0.02, b_fa=0.02, b_c4=0.02, b_pro=0.02, b_ac=0.02, b_h2=0.02,
q_PHA=3, b_PAO=0.2, b_PP=0.2, b_PHA=0.2,
KI_h2_fa=5e-6, KI_h2_c4=1e-5, KI_h2_pro=3.5e-6, KI_nh3=1.8e-3, KS_IN=1e-4, KS_IP=2e-5,
Expand Down Expand Up @@ -861,8 +861,8 @@ class ADM1p(ADM1):
K_A : float, optional
VFAs half saturation coefficient for PHA storage [kg COD/m3]. The default is 0.004.
K_PP : float, optional
Half saturation coefficient for polyphosphate [kmol PP/kg PAO COD].
The default is 0.00032.
Half saturation coefficient for polyphosphate [kg P/kg PAO COD].
The default is 0.01.
q_PHA : float, optional
Rate constant for storage of PHA [d^(-1)]. The default is 3.
b_PAO : float, optional
Expand Down Expand Up @@ -940,7 +940,7 @@ def __new__(cls, components=None, path=None,
q_dis=0.5, q_ch_hyd=10, q_pr_hyd=10, q_li_hyd=10,
k_su=30, k_aa=50, k_fa=6, k_c4=20, k_pro=13, k_ac=8, k_h2=35,
K_su=0.5, K_aa=0.3, K_fa=0.4, K_c4=0.2, K_pro=0.1, K_ac=0.15, K_h2=7e-6,
K_A=4e-3, K_PP=32e-5,
K_A=4e-3, K_PP=0.01,
b_su=0.02, b_aa=0.02, b_fa=0.02, b_c4=0.02, b_pro=0.02, b_ac=0.02, b_h2=0.02,
q_PHA=3, b_PAO=0.2, b_PP=0.2, b_PHA=0.2,
KI_h2_fa=5e-6, KI_h2_c4=1e-5, KI_h2_pro=3.5e-6, KI_nh3=1.8e-3, KS_IN=1e-4, KS_IP=2e-5,
Expand Down

0 comments on commit 72fae35

Please sign in to comment.