Skip to content

Commit

Permalink
missing declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
Sigfried Haering committed Oct 15, 2024
1 parent a9c224f commit 6dbee4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/reaction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ MFEM_HOST_DEVICE double RadiativeDecay::computeRateCoefficient(const double &T_h
const int &dofindex,
[[maybe_unused]] const bool isElectronInvolved,
const double *nsp) {
effAcoef = 0.0;
double effAcoef = 0.0;
return effAcoef;
}

Expand All @@ -331,7 +331,7 @@ MFEM_HOST_DEVICE void RadiativeDecay::GetEinsteinACoefficient(const double &T_h,
MFEM_HOST_DEVICE double RadiativeDecay::escapeFactCalc(const double &n_i, const double &E_j, const double &E_i,
const double &g_j, const double &g_i, const double &A_ji,
const double &T_g) {
eta = 1.0;
double eta = 1.0;
return eta;
}
#endif

0 comments on commit 6dbee4d

Please sign in to comment.