Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Özgür Ozan Sen
ogs
Commits
2d68cd83
Commit
2d68cd83
authored
8 years ago
by
Norihiro Watanabe
Browse files
Options
Downloads
Patches
Plain Diff
add MaterialLib/FractureModels and its base class
parent
90edaa5b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
MaterialLib/CMakeLists.txt
+1
-0
1 addition, 0 deletions
MaterialLib/CMakeLists.txt
MaterialLib/FractureModels/FractureModelBase.h
+40
-0
40 additions, 0 deletions
MaterialLib/FractureModels/FractureModelBase.h
with
41 additions
and
0 deletions
MaterialLib/CMakeLists.txt
+
1
−
0
View file @
2d68cd83
...
...
@@ -2,6 +2,7 @@
get_source_files
(
SOURCES
)
append_source_files
(
SOURCES Adsorption
)
append_source_files
(
SOURCES SolidModels
)
append_source_files
(
SOURCES FractureModels
)
append_source_files
(
SOURCES Fluid
)
append_source_files
(
SOURCES Fluid/Density
)
...
...
This diff is collapsed.
Click to expand it.
MaterialLib/FractureModels/FractureModelBase.h
0 → 100644
+
40
−
0
View file @
2d68cd83
/**
* \copyright
* Copyright (c) 2012-2016, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
* http://www.opengeosys.org/project/license
*
*/
#pragma once
#include
<Eigen/Eigen>
#include
"ProcessLib/Parameter/Parameter.h"
namespace
MaterialLib
{
namespace
Fracture
{
template
<
int
DisplacementDim
>
class
FractureModelBase
{
public:
virtual
~
FractureModelBase
()
{}
virtual
void
computeConstitutiveRelation
(
double
const
t
,
ProcessLib
::
SpatialPosition
const
&
x
,
Eigen
::
Ref
<
Eigen
::
VectorXd
const
>
w_prev
,
Eigen
::
Ref
<
Eigen
::
VectorXd
const
>
w
,
Eigen
::
Ref
<
Eigen
::
VectorXd
const
>
sigma_prev
,
Eigen
::
Ref
<
Eigen
::
VectorXd
>
sigma
,
Eigen
::
Ref
<
Eigen
::
MatrixXd
>
C
)
=
0
;
};
}
// namespace Fracture
}
// namespace MaterialLib
This diff is collapsed.
Click to expand it.
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