Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dumux-repositories
dumux
Commits
f334d2ef
Commit
f334d2ef
authored
2 years ago
by
Timo Koch
Browse files
Options
Downloads
Patches
Plain Diff
[common] Add BasicVolumeVariables for reuse in simple models
parent
0e94bc03
No related branches found
No related tags found
1 merge request
!3380
[example] Add simple diffusion eqution including full model
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/common/volumevariables.hh
+67
-0
67 additions, 0 deletions
dumux/common/volumevariables.hh
with
67 additions
and
0 deletions
dumux/common/volumevariables.hh
0 → 100644
+
67
−
0
View file @
f334d2ef
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
// vi: set et ts=4 sw=4 sts=4:
/*****************************************************************************
* See the file COPYING for full copying permissions. *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*****************************************************************************/
/*!
* \file
* \ingroup Common
* \brief Basic volume variables for finite volume methods
*/
#ifndef DUMUX_COMMON_BASIC_VOLUME_VARIABLES_HH
#define DUMUX_COMMON_BASIC_VOLUME_VARIABLES_HH
#include
<memory>
namespace
Dumux
{
template
<
class
Traits
>
class
BasicVolumeVariables
{
using
Scalar
=
typename
Traits
::
PrimaryVariables
::
value_type
;
public:
//! export the type used for the primary variables
using
PrimaryVariables
=
typename
Traits
::
PrimaryVariables
;
/*!
* \brief Update all quantities for a given control volume
*/
template
<
class
ElementSolution
,
class
Problem
,
class
Element
,
class
SubControlVolume
>
void
update
(
const
ElementSolution
&
elemSol
,
const
Problem
&
problem
,
const
Element
&
element
,
const
SubControlVolume
&
scv
)
{
priVars_
=
elemSol
[
scv
.
indexInElement
()];
}
Scalar
priVar
(
const
int
pvIdx
)
const
{
return
priVars_
[
pvIdx
];
}
const
PrimaryVariables
&
priVars
()
const
{
return
priVars_
;
}
// for compatibility with more general models
Scalar
extrusionFactor
()
const
{
return
1.0
;
}
private
:
PrimaryVariables
priVars_
;
};
}
// end namespace Dumux
#endif
This diff is collapsed.
Click to expand it.
Timo Koch
@timok
mentioned in commit
aa33ab3d
·
2 years ago
mentioned in commit
aa33ab3d
mentioned in commit aa33ab3d4b71f44f5a2fc27208738d0337976502
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment