Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cm3Libraries
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
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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm3
cm3Libraries
Commits
462d7cdf
Commit
462d7cdf
authored
5 years ago
by
vinugholap@gmail.com
Browse files
Options
Downloads
Patches
Plain Diff
Correction in ctor for Dirichlet BC
parent
e70292a6
Branches
Branches containing commit
Tags
Tags containing commit
3 merge requests
!293
Master
,
!290
Vinayak
,
!289
Vinayak
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
dG3D/src/dG3DDomain.cpp
+3
-3
3 additions, 3 deletions
dG3D/src/dG3DDomain.cpp
with
3 additions
and
3 deletions
dG3D/src/dG3DDomain.cpp
+
3
−
3
View file @
462d7cdf
...
...
@@ -589,12 +589,12 @@ FunctionSpaceBase* dG3DDomain::getSpaceForBC(const nonLinearBoundaryCondition::t
FunctionSpaceBase
*
spacebc
=
NULL
;
if
(
bc_type
==
nonLinearBoundaryCondition
::
DIRICHLET
)
{
spacebc
=
new
g3DDirichletBoundaryConditionHierarchicalCurlFunctionSpace
(
getTag
(),
1
,
dof_comp
);
spacebc
=
new
g3DDirichletBoundaryConditionHierarchicalCurlFunctionSpace
(
getTag
(),
1
,
dof_comp
,
1
);
}
else
if
(
bc_type
==
nonLinearBoundaryCondition
::
NEUMANN
)
{
if
(
neumann_type
==
nonLinearNeumannBC
::
FORCE
){
spacebc
=
new
g3DNeumannBoundaryConditionHierarchicalCurlFunctionSpace
(
getTag
(),
1
,
dof_comp
);
spacebc
=
new
g3DNeumannBoundaryConditionHierarchicalCurlFunctionSpace
(
getTag
(),
1
,
dof_comp
,
1
);
}
else
{
...
...
@@ -603,7 +603,7 @@ FunctionSpaceBase* dG3DDomain::getSpaceForBC(const nonLinearBoundaryCondition::t
}
else
if
(
bc_type
==
nonLinearBoundaryCondition
::
INITIAL
)
{
spacebc
=
new
g3DDirichletBoundaryConditionHierarchicalCurlFunctionSpace
(
getTag
(),
1
,
dof_comp
);
spacebc
=
new
g3DDirichletBoundaryConditionHierarchicalCurlFunctionSpace
(
getTag
(),
1
,
dof_comp
,
1
);
}
return
spacebc
;
}
...
...
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