Skip to content

Commit

Permalink
adding some more stuff in equations.cc
Browse files Browse the repository at this point in the history
  • Loading branch information
landinjm committed Jan 17, 2025
1 parent dd98ec1 commit 7444bcb
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions applications/multigrid_test/equations.cc
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
#include "custom_pde.h"

#include <config.h>
#include <core/variableAttributeLoader.h>

void
customAttributeLoader::loadVariableAttributes()
{
set_variable_name(0, "phi");
set_variable_type(0, SCALAR);
set_variable_equation_type(0, EXPLICIT_TIME_DEPENDENT);

set_dependencies_value_term_RHS(0, "");
set_dependencies_gradient_term_RHS(0, "");
}

void
customAttributeLoader::loadPostProcessorVariableAttributes()
{}

template <int dim, int degree, typename number>
void
Expand Down

0 comments on commit 7444bcb

Please sign in to comment.