Commit 6668f1d 1 parent 8b384b9 commit 6668f1d Copy full SHA for 6668f1d
File tree 2 files changed +17
-4
lines changed
benchmarks/solcx/compositional_fields
2 files changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ namespace aspect
15
15
class SolCxCompositionalMaterial : public SolCxMaterial <dim>
16
16
{
17
17
public:
18
- virtual void evaluate (const MaterialModel::MaterialModelInputs<dim> &in,
19
- MaterialModel::MaterialModelOutputs<dim> &out) const
18
+ void evaluate (const MaterialModel::MaterialModelInputs<dim> &in,
19
+ MaterialModel::MaterialModelOutputs<dim> &out) const override
20
20
{
21
21
for (unsigned int i=0 ; i < in.n_evaluation_points (); ++i)
22
22
{
Original file line number Diff line number Diff line change @@ -70,7 +70,10 @@ mainprms:= $(wildcard *.prm)
70
70
71
71
main : dummy $(mainprms )
72
72
73
- # custom rules. Make them dependent on dummy like this:
73
+
74
+ #
75
+ #
76
+ # Custom rules. Make them dependent on dummy like this:
74
77
#
75
78
# example/: dummy
76
79
# @$(def); run_prm $@ test.prm
@@ -79,6 +82,16 @@ free_surface_with_crust/: dummy
79
82
+@$(def ) ; make_lib $@ /plugin
80
83
@$(def ) ; run_all_prms $@
81
84
82
- # does not run without generating an input file using a python script
85
+ # This does not run without generating an input file using a python script
83
86
prescribed_velocity_ascii_data/ : dummy
84
87
+@$(def ) ; make_lib $@
88
+
89
+ # Manually list files (and ignore mantle_setup_restart.prm as _start does not generate
90
+ # a checkpoint file after 1 step
91
+ future/ : dummy
92
+ @$(def ) ; run_prm $@ mantle_setup_start.prm
93
+ @$(def ) ; run_prm $@ net_rotation.prm
94
+ @$(def ) ; run_prm $@ periodic_box.prm
95
+ @$(def ) ; run_prm $@ radiogenic_heating.prm
96
+ @$(def ) ; run_prm $@ radiogenic_heating_function.prm
97
+ @$(def ) ; run_prm $@ sphere.prm
You can’t perform that action at this time.
0 commit comments