Skip to content
Open
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
1 change: 1 addition & 0 deletions src/base/SheepApp.C
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include "SheepApp.h"
#include "Moose.h"
#include "AppFactory.h"
#include "MooseSyntax.h"
#include "ModulesApp.h"

//Auxiliary Kernels
Expand Down
1 change: 1 addition & 0 deletions src/materials/GMSMaterial.C
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
/****************************************************************/

#include "GMSMaterial.h"
#include "MooseMesh.h"

template<>
InputParameters validParams<GMSMaterial>()
Expand Down
3 changes: 3 additions & 0 deletions src/materials/THMaterial.C
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@

#include "THMaterial.h"

// libMesh includes
#include "libmesh/quadrature.h"

template<>
InputParameters validParams<THMaterial>()
{
Expand Down
3 changes: 2 additions & 1 deletion src/userobjects/PropertyReadFile.C
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ Real
PropertyReadFile::getData(const Elem * elem, unsigned int prop_num) const
{
unsigned int jelem = elem->id();
mooseAssert( jelem < _nelem, "Error PropertyReadFile: Element " << jelem << " greater than total number of block elements " << _ele_id[_nelem - 1]);
// TODO: Update this assert, _ele_id no longer exists...
// mooseAssert( jelem < _nelem, "Error PropertyReadFile: Element " << jelem << " greater than total number of block elements " << _ele_id[_nelem - 1]);
mooseAssert( prop_num < _nprop, "Error PropertyReadFile: Property number " << prop_num << " greater than total number of properties " << 4);
return _Eledata[jelem * _nprop + prop_num];
}
Expand Down