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
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
Yuhao Liu
ogs
Commits
3e1c53e1
Commit
3e1c53e1
authored
8 years ago
by
Christoph Lehmann
Browse files
Options
Downloads
Patches
Plain Diff
[PL] LocAsmIntf w/o VecMatAsm
parent
64c77f5e
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ProcessLib/LocalAssemblerInterface.h
+11
-18
11 additions, 18 deletions
ProcessLib/LocalAssemblerInterface.h
with
11 additions
and
18 deletions
ProcessLib/LocalAssemblerInterface.h
+
11
−
18
View file @
3e1c53e1
...
...
@@ -23,26 +23,19 @@ class LocalAssemblerInterface
public:
virtual
~
LocalAssemblerInterface
()
=
default
;
virtual
void
assemble
(
double
const
t
,
std
::
vector
<
double
>
const
&
local_x
)
=
0
;
virtual
void
addToGlobal
(
NumLib
::
LocalToGlobalIndexMap
::
RowColumnIndices
const
&
,
GlobalMatrix
&
M
,
GlobalMatrix
&
K
,
GlobalVector
&
b
)
const
=
0
;
virtual
void
assembleJacobian
(
double
const
/*t*/
,
std
::
vector
<
double
>
const
&
/*local_x*/
)
{
OGS_FATAL
(
"assembleJacobian function is not implemented in the local "
"assembler."
);
}
virtual
void
addJacobianToGlobal
(
NumLib
::
LocalToGlobalIndexMap
::
RowColumnIndices
const
&
/*indices*/
,
GlobalMatrix
&
/*Jac*/
)
const
virtual
void
assemble
(
std
::
size_t
const
id
,
NumLib
::
LocalToGlobalIndexMap
const
&
dof_table
,
double
const
t
,
GlobalVector
const
&
x
,
GlobalMatrix
&
M
,
GlobalMatrix
&
K
,
GlobalVector
&
b
)
=
0
;
virtual
void
assembleJacobian
(
std
::
size_t
const
/*id*/
,
NumLib
::
LocalToGlobalIndexMap
const
&
/*dof_table*/
,
double
const
/*t*/
,
GlobalVector
const
&
/*x*/
,
GlobalMatrix
&
/*Jac*/
)
{
OGS_FATAL
(
"
addJacobianToGlobal
function is not implemented in the local "
"
The assembleJacobian()
function is not implemented in the local "
"assembler."
);
}
...
...
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