Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-gdt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
ag-ohlberger
dune-community
dune-gdt
Commits
a1177eff
Commit
a1177eff
authored
4 years ago
by
Dr. Felix Tobias Schindler
Committed by
Tobias Leibner
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[P|basic] add module to import everything of relevance
parent
00d4b970
No related branches found
No related tags found
1 merge request
!10
Draft: consolidate refactoring work
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
python/dune/gdt/basic.py
+52
-0
52 additions, 0 deletions
python/dune/gdt/basic.py
with
52 additions
and
0 deletions
python/dune/gdt/basic.py
0 → 100644
+
52
−
0
View file @
a1177eff
from
dune.gdt._discretefunction_bochner
import
DiscreteBochnerFunction
from
dune.gdt._discretefunction_discretefunction
import
DiscreteFunction
from
dune.gdt._interpolations_boundary
import
boundary_interpolation
from
dune.gdt._interpolations_default
import
default_interpolation
from
dune.gdt._interpolations_oswald
import
oswald_interpolation
from
dune.gdt._local_bilinear_forms_coupling_intersection_integrals
import
(
LocalCouplingIntersectionIntegralBilinearForm
)
from
dune.gdt._local_bilinear_forms_element_integrals
import
LocalElementIntegralBilinearForm
from
dune.gdt._local_bilinear_forms_intersection_integrals
import
LocalIntersectionIntegralBilinearForm
from
dune.gdt._local_bilinear_forms_restricted_coupling_intersection_integrals
import
(
LocalCouplingIntersectionRestrictedIntegralBilinearForm
)
from
dune.gdt._local_bilinear_forms_restricted_intersection_integrals
import
(
LocalIntersectionRestrictedIntegralBilinearForm
)
from
dune.gdt._local_functionals_element_integrals
import
LocalElementIntegralFunctional
from
dune.gdt._local_functionals_intersection_integrals
import
LocalIntersectionIntegralFunctional
from
dune.gdt._local_functionals_restricted_intersection_integrals
import
LocalIntersectionRestrictedIntegralFunctional
from
dune.gdt._local_integrands_element_product
import
LocalElementProductIntegrand
from
dune.gdt._local_integrands_intersection_product
import
(
LocalIntersectionNormalComponentProductIntegrand
,
LocalIntersectionProductIntegrand
)
from
dune.gdt._local_integrands_ipdg_boundary_penalty
import
LocalIPDGBoundaryPenaltyIntegrand
from
dune.gdt._local_integrands_ipdg_inner_penalty
import
LocalIPDGInnerPenaltyIntegrand
from
dune.gdt._local_integrands_jump_boundary
import
LocalBoundaryJumpIntegrand
from
dune.gdt._local_integrands_jump_inner
import
LocalInnerJumpIntegrand
from
dune.gdt._local_integrands_laplace
import
LocalLaplaceIntegrand
from
dune.gdt._local_integrands_laplace_ipdg_dirichlet_coupling
import
LocalLaplaceIPDGDirichletCouplingIntegrand
from
dune.gdt._local_integrands_laplace_ipdg_inner_coupling
import
LocalLaplaceIPDGInnerCouplingIntegrand
from
dune.gdt._local_integrands_linear_advection
import
LocalLinearAdvectionIntegrand
from
dune.gdt._local_integrands_linear_advection_upwind_dirichlet_coupling
import
(
LocalLinearAdvectionUpwindDirichletCouplingIntegrand
)
from
dune.gdt._local_integrands_linear_advection_upwind_inner_coupling
import
(
LocalLinearAdvectionUpwindInnerCouplingIntegrand
)
from
dune.gdt._local_operators_coupling_intersection_indicator
import
(
LocalCouplingIntersectionBilinearFormIndicatorOperator
)
from
dune.gdt._local_operators_element_indicator
import
LocalElementBilinearFormIndicatorOperator
from
dune.gdt._local_operators_intersection_indicator
import
LocalIntersectionBilinearFormIndicatorOperator
from
dune.gdt._operators_bilinear_form
import
BilinearForm
from
dune.gdt._operators_laplace_ipdg_flux_reconstruction
import
LaplaceIpdgFluxReconstructionOperator
from
dune.gdt._operators_matrix_based_factory
import
IstlSparseMatrixOperator
,
MatrixOperator
from
dune.gdt._operators_operator
import
Operator
from
dune.gdt._prolongations
import
prolong
,
prolong_space_time
from
dune.gdt._spaces_bochner
import
BochnerSpace
from
dune.gdt._spaces_h1_continuous_lagrange
import
ContinuousLagrangeSpace
from
dune.gdt._spaces_hdiv_raviart_thomas
import
RaviartThomasSpace
from
dune.gdt._spaces_l2_discontinuous_lagrange
import
DiscontinuousLagrangeSpace
from
dune.gdt._spaces_l2_finite_volume
import
FiniteVolumeSpace
from
dune.gdt._spaces_skeleton_finite_volume
import
FiniteVolumeSkeletonSpace
from
dune.gdt._tools_adaptation_helper
import
AdaptationHelper
from
dune.gdt._tools_dirichlet_constraints
import
DirichletConstraints
from
dune.gdt._tools_grid_quality_estimates
import
(
estimate_combined_inverse_trace_inequality_constant
,
estimate_element_to_intersection_equivalence_constant
,
estimate_inverse_inequality_constant
)
from
dune.gdt._tools_sparsity_pattern
import
(
make_element_and_intersection_sparsity_pattern
,
make_element_sparsity_pattern
,
make_intersection_sparsity_pattern
)
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