Skip to content

Commit

Permalink
Make TimeDerivativeNodalKernel inherit from TimeNodalKernel closes id…
Browse files Browse the repository at this point in the history
  • Loading branch information
friedmud committed Nov 11, 2015
1 parent e323f54 commit 33782ff
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions framework/include/nodalkernels/TimeDerivativeNodalKernel.h
Expand Up @@ -15,7 +15,7 @@
#ifndef TIMEDERIVATIVENODALKERNEL_H
#define TIMEDERIVATIVENODALKERNEL_H

#include "NodalKernel.h"
#include "TimeNodalKernel.h"

//Forward Declarations
class TimeDerivativeNodalKernel;
Expand All @@ -26,7 +26,7 @@ InputParameters validParams<TimeDerivativeNodalKernel>();
/**
* Represents du/dt
*/
class TimeDerivativeNodalKernel : public NodalKernel
class TimeDerivativeNodalKernel : public TimeNodalKernel
{
public:
/**
Expand Down
2 changes: 1 addition & 1 deletion framework/src/nodalkernels/TimeDerivativeNodalKernel.C
Expand Up @@ -22,7 +22,7 @@ InputParameters validParams<TimeDerivativeNodalKernel>()
}

TimeDerivativeNodalKernel::TimeDerivativeNodalKernel(const InputParameters & parameters) :
NodalKernel(parameters)
TimeNodalKernel(parameters)
{
}

Expand Down
Binary file not shown.
Expand Up @@ -87,6 +87,7 @@
solve_type = PJFNK
petsc_options_iname = '-pc_type -pc_hypre_type'
petsc_options_value = 'hypre boomeramg'
scheme = 'crank-nicolson'
[]

[Outputs]
Expand Down

0 comments on commit 33782ff

Please sign in to comment.