Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-gfe
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sander, Oliver
dune-gfe
Merge requests
!12
Master
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Master
lnebel/dune-gfe:master
into
master
Overview
32
Commits
15
Pipelines
6
Changes
1
Closed
Nebel, Lisa Julia
requested to merge
lnebel/dune-gfe:master
into
master
5 years ago
Overview
22
Commits
15
Pipelines
6
Changes
1
Expand
added film-on-substrate.cc
0
0
Merge request reports
Viewing commit
97a89ab2
Prev
Next
Show latest version
1 file
+
0
−
15
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
97a89ab2
Remove unused or commented-out code from film-on-substrate.cc
· 97a89ab2
Lisa Julia Nebel
authored
5 years ago
src/film-on-substrate.cc
+
0
−
15
Options
@@ -42,14 +42,10 @@
#include
<dune/gfe/rigidbodymotion.hh>
#include
<dune/gfe/localgeodesicfeadolcstiffness.hh>
// #include <dune/gfe/cosseratenergystiffness.hh>
#include
<dune/gfe/cosseratvtkwriter.hh>
//#include <dune/gfe/cosseratvtkreader.hh>
//#include <dune/gfe/vtkreader.hh>
#include
<dune/gfe/geodesicfeassembler.hh>
#include
<dune/gfe/riemanniantrsolver.hh>
#include
<dune/gfe/vertexnormals.hh>
//#include <dune/gfe/embeddedglobalgfefunction.hh>
#include
<dune/gfe/surfacecosseratenergy.hh>
#include
<dune/gfe/sumcosseratenergy.hh>
@@ -64,13 +60,8 @@ const int dim = WORLD_DIM;
const
int
order
=
1
;
//differentiation method
#ifdef CODIPACK
typedef
double
ValueType
;
typedef
codi
::
RealReverseGen
<
codi
::
RealForward
,
codi
::
RealForward
>
GradientValueType
;
#else
typedef
adouble
ValueType
;
typedef
adouble
GradientValueType
;
#endif
using
namespace
Dune
;
@@ -115,12 +106,6 @@ struct VolumeLoad
int
main
(
int
argc
,
char
*
argv
[])
try
{
#ifdef CODIPACK
std
::
cout
<<
"Using CodiPack"
<<
std
::
endl
;
#else
std
::
cout
<<
"Using ADOL-C"
<<
std
::
endl
;
#endif
// initialize MPI, finalize is done automatically on exit
Dune
::
MPIHelper
&
mpiHelper
=
MPIHelper
::
instance
(
argc
,
argv
);
Loading