need for true impes

This commit is contained in:
hnil 2022-06-22 18:28:07 +02:00 committed by Atgeirr Flø Rasmussen
parent b7f2a85534
commit 3616e68d3a
2 changed files with 7 additions and 0 deletions

View File

@ -271,6 +271,9 @@ template<class TypeTag >
class BlackOilModel
: public MultiPhaseBaseModel<TypeTag>
{
public:
using LocalResidual = GetPropType<TypeTag, Properties::LocalResidual>;
private:
using Implementation = GetPropType<TypeTag, Properties::Model>;
using ParentType = MultiPhaseBaseModel<TypeTag>;

View File

@ -800,6 +800,10 @@ public:
{
//invalidateIntensiveQuantitiesCache(timeIdx);
size_t numGridDof = primaryVars.size();
omp_sched_t kind;
int chunk;
//omp_get_schedule(&kind, &chunk);
//printf("%d %d\n", kind, chunk);
#ifdef _OPENMP
#pragma omp parallel for
#endif