Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update code style in dynamic core 2 #6187

Merged
merged 1 commit into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions include/aspect/boundary_temperature/dynamic_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ namespace aspect
/**
* Max iterations for the core energy balance solver.
*/
int max_steps;
unsigned int max_steps;

/**
* Temperature correction value for adiabatic
Expand Down Expand Up @@ -409,8 +409,8 @@ namespace aspect
double get_Ts(const double r) const;

/**
* Compute the core solidus at certain pressure @p pressure
* and light element concentration @p X (in wt.%).
* Compute the core solidus at a given light element concentration @p X (in wt.%)
* and pressure @p pressure.
*/
double get_solidus(const double X, const double pressure) const;

Expand All @@ -434,7 +434,7 @@ namespace aspect
/**
* Calculate Sn(B,R), referring to \cite NPB+04 .
*/
double fun_Sn(const double B, const double R, const double n) const;
double fun_Sn(const double B, const double R, const unsigned int n) const;

/**
* Calculate density at given radius @p r.
Expand Down
Loading
Loading