IAP GITLAB

Skip to content
Snippets Groups Projects
Commit d8d08a6d authored by Maximilian Reininghaus's avatar Maximilian Reininghaus :vulcan:
Browse files

documentation

parent bcbe52d5
No related branches found
No related tags found
1 merge request!99sliding planar atmosphere
......@@ -24,12 +24,20 @@
#include <cassert>
#include <limits>
/**
*
*/
namespace corsika::environment {
// clang-format off
/**
* The SlidingPlanarExponential models mass density as
* \f[
* \varrho(r) = \varrho_0 \exp\left( \frac{|p_0 - r|}{\lambda} \right).
* \f]
* For grammage/length conversion, the density distribution is approximated as
* locally flat at the starting point \f$ r_0 \f$ of the trajectory with the axis pointing
* from \f$ p_0 \f$ to \f$ r_0 \f$.
*/
//clang-format on
template <class T>
class SlidingPlanarExponential : public BaseExponential<SlidingPlanarExponential<T>>,
public T {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment