Skip to content

Commit

Permalink
Fixed JavaDoc.
Browse files Browse the repository at this point in the history
  • Loading branch information
cfries committed Jul 26, 2023
1 parent b8e9e43 commit 73f8598
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
11 changes: 6 additions & 5 deletions src/main/java/net/finmath/climate/models/dice/DICEModel.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,12 @@ public class DICEModel implements ClimateModel {
private double[] value;

/**
*
* @param timeDiscretization
* @param abatementFunction
* @param savingsRateFunction
* @param discountRate
* Create the model.
*
* @param timeDiscretization The time discretization to be used.
* @param abatementFunction Abatement function \( t \mapsto \mu(t) \)
* @param savingsRateFunction Savings rate function \( t \mapsto s(t) \)
* @param discountRate Constant exponential disocunt rate r
* @param modelProperties A key value map of optional model properties or parameters.
*/
public DICEModel(TimeDiscretization timeDiscretization, UnaryOperator<Double> abatementFunction, UnaryOperator<Double> savingsRateFunction, double discountRate, Map<String, Object> modelProperties) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ public class EvolutionOfEmissionIndustrialIntensity implements BiFunction<Intege

/**
* The evolution of the emission intensity
* @param timeStep The size of one timeStep.
* @param emissionIntensityRateInitial
* @param emissionIntensityRateDecay
* @param timeDiscretization The time discretization used.
* @param emissionIntensityInitial The initial emission intensity. Unit: GtCO2 / (10^12 USD)
* @param emissionIntensityRateInitial Initial value for the exponential decay rate.
* @param emissionIntensityRateDecay Exponential decay rate for the decay rate.
*/
public EvolutionOfEmissionIndustrialIntensity(TimeDiscretization timeDiscretization, double emissionIntensityInitial,
double emissionIntensityRateInitial, double emissionIntensityRateDecay) {
Expand Down

0 comments on commit 73f8598

Please sign in to comment.