Forked from
agnumpde / dune-tectonic
35 commits ahead of the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
enums.hh 250 B
#ifndef SRC_ENUMS_HH
#define SRC_ENUMS_HH
struct Config {
enum FrictionModel { Truncated, Regularised };
enum stateModel { AgeingLaw, SlipLaw };
enum scheme { Newmark, BackwardEuler };
enum PatchType { Rectangular, Trapezoidal };
};
#endif