Skip to content

Commit 0cb7f33

Browse files
authored
[create-pull-request] automated change
1 parent a76d2c4 commit 0cb7f33

4 files changed

Lines changed: 171 additions & 16 deletions

File tree

docs/ExtendedKalmanFilter.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# ExtendedKalmanFilter
2+
3+
4+
5+
6+
## Methods
7+
8+
9+
### __init__
10+
11+
12+
13+
14+
#### Parameters
15+
name | description | default
16+
--- | --- | ---
17+
self | |
18+
measurement_covariance | |
19+
model_covariance | |
20+
21+
22+
23+
24+
25+
### calculate
26+
27+
28+
29+
30+
#### Parameters
31+
name | description | default
32+
--- | --- | ---
33+
measurements | |
34+
35+
36+
37+

docs/MassBalance.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# MassBalance
2+
3+
4+
5+
6+
## Methods
7+
8+
9+
### __init__
10+
11+
12+
13+
14+
#### Parameters
15+
name | description | default
16+
--- | --- | ---
17+
self | |
18+
microbial_kinetics | |
19+
inlet | |
20+
outlet | |
21+
22+
23+
24+
25+
26+
### calculate
27+
28+
29+
Calculates the mass balance for a given kinetic rate list.
30+
31+
#### Parameters
32+
name | description | default
33+
--- | --- | ---
34+
self | |
35+
concentrations | |
36+
time | |
37+
38+
39+
40+

docs/README.md

Lines changed: 54 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## Classes
44

5+
**[ExtendedKalmanFilter](ExtendedKalmanFilter.md)**:
6+
7+
**[YeastModel](YeastModel.md)**:
8+
9+
**[MassBalance](MassBalance.md)**:
10+
511
**[RangeCut](RangeCut.md)**: Cuts a dataframe selecting the wavenumbers between start and end.
612

713
**[Derivative](Derivative.md)**: Calculates the derivative of a each row in a dataframe using the Savitzky-Golay filter.
@@ -41,37 +47,53 @@ Test the loading of the fermentation data.
4147

4248

4349

44-
### cross_validation
50+
### load_training_data
4551

4652

47-
Performs cross-validation on the data. By default it performs a leave-one-out cross-validation.
48-
#### Parameters
49-
name | description | default
50-
--- | --- | ---
51-
X | spectra dataframe containing the spectra with the wavenumbers as columns. |
52-
y | dataframe containing the reference hplc measurements. |
53+
Loads the training data.
5354

5455

5556

5657

58+
### load_fermentation_spectra_data
5759

58-
### load_train_data
5960

60-
61-
Loads the train data.
61+
Loads the fermentation data.
6262

6363

6464

6565

66-
### load_fermentation_data
66+
### load_fermentation_hplc_data
6767

6868

6969
Loads the fermentation data.
7070

7171

7272

7373

74-
### plot_fermentation
74+
### load_pls_glucose_model
75+
76+
77+
78+
79+
80+
81+
82+
### cross_validation
83+
84+
85+
Performs cross-validation on the data. By default it performs a leave-one-out cross-validation.
86+
#### Parameters
87+
name | description | default
88+
--- | --- | ---
89+
X | spectra dataframe containing the spectra with the wavenumbers as columns. |
90+
y | dataframe containing the reference hplc measurements. |
91+
92+
93+
94+
95+
96+
### plot_pls_fermentation
7597

7698

7799
Plots the predicted concentration and the reference hplc measurements.
@@ -85,6 +107,20 @@ fermentation_hplc | load the reference hplc measurements. |
85107

86108

87109

110+
### plot_pls_training
111+
112+
113+
Plots the PLS predictions and the reference hplc measurements for the training set.
114+
#### Parameters
115+
name | description | default
116+
--- | --- | ---
117+
predictions | predicted concentrations. |
118+
reference | reference hplc measurements. |
119+
120+
121+
122+
123+
88124
### plot_spectra
89125

90126

@@ -101,15 +137,17 @@ ylabel | y-axis label |
101137

102138

103139

104-
### plot_predictions
140+
### plot_mechanistic_fermentation
105141

106142

107-
Plots the PLS predictions and the reference hplc measurements for the training set.
143+
Plots the predicted concentration and the reference hplc measurements.
108144
#### Parameters
109145
name | description | default
110146
--- | --- | ---
111-
predictions | predicted concentrations. |
112-
reference | reference hplc measurements. |
147+
prediction | load the predictions. |
148+
fermentation_hplc | load the reference hplc measurements. |
149+
time | |
150+
concentrations | |
113151

114152

115153

docs/YeastModel.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# YeastModel
2+
3+
4+
5+
6+
## Methods
7+
8+
9+
### __init__
10+
11+
12+
13+
14+
#### Parameters
15+
name | description | default
16+
--- | --- | ---
17+
self | |
18+
model_type | |
19+
substrate_biomass_yield | |
20+
substrate_product_yield | |
21+
22+
23+
24+
25+
26+
### calculate_rates
27+
28+
29+
30+
31+
#### Parameters
32+
name | description | default
33+
--- | --- | ---
34+
self | |
35+
substrate_concentration | |
36+
biomass_concentration | |
37+
38+
39+
40+

0 commit comments

Comments
 (0)