ASM Aerobic Digestion Add-on (ASM_AeDigAddOn)¶
- class qsdsan.process_models.ASM_AeDigAddOn(ID, k_dig=0.04, components=None)¶
Creates a Process object representing the degradation of particulate inert organic materials that typically occur in an aerobic digester. Stoichiometry is determined by rules of element conservation in corresponding activated sludge models.
- Parameters:
k_dig (float, optional) – The 1st-order degradation rate constant, in d^(-1). The default is 0.04.
Examples
>>> import qsdsan.process_models as pc >>> cmps_asm1 = pc.create_asm1_cmps() >>> dig_asm1 = pc.ASM_AeDigAddOn('dig_asm1') >>> dig_asm1.show() Process: dig_asm1 [stoichiometry] X_I: -1 X_S: 1 S_NH: 0.06 S_ALK: 0.0514 [reference] X_I [rate equation] X_I*k_dig [parameters] k_dig: 0.04 [dynamic parameters]
>>> cmps_masm2d = pc.create_masm2d_cmps(set_thermo=False) >>> dig_masm2d = pc.ASM_AeDigAddOn('dig_masm2d', components=cmps_masm2d) >>> dig_masm2d.show() Process: dig_masm2d [stoichiometry] S_NH4: 0.0265 S_PO4: 0.0009 S_IC: 0.0433 X_I: -1 X_S: 1 [reference] X_I [rate equation] X_I*k_dig [parameters] k_dig: 0.04 [dynamic parameters]
- property k_dig¶
[float] Degradation rate constant, in d^(-1).