suanPan
PhaseField.h
Go to the documentation of this file.
1/*******************************************************************************
2 * Copyright (C) 2017-2024 Theodore Chang
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 ******************************************************************************/
29#ifndef PHASEFIELD_H
30#define PHASEFIELD_H
31
32#include <Material/Material.h>
33
35 double strain_energy = 0.;
36 double t_strain_energy = 0.;
37 double c_strain_energy = 0.;
38 double dev_strain_energy = 0.;
41 double vol_strain_energy = 0.;
44};
45
48
49 void clear_status();
50};
51
52#endif
53
Definition: PhaseField.h:34
double c_dev_strain_energy
Definition: PhaseField.h:40
double strain_energy
Definition: PhaseField.h:35
double t_dev_strain_energy
Definition: PhaseField.h:39
double c_strain_energy
Definition: PhaseField.h:37
double t_vol_strain_energy
Definition: PhaseField.h:42
double dev_strain_energy
Definition: PhaseField.h:38
double t_strain_energy
Definition: PhaseField.h:36
double c_vol_strain_energy
Definition: PhaseField.h:43
double vol_strain_energy
Definition: PhaseField.h:41
A PhaseField class.
Definition: PhaseField.h:46
void commit_status(const unique_ptr< Material > &)
Definition: PhaseField.cpp:21
void clear_status()
Definition: PhaseField.cpp:53