Home
last modified time | relevance | path

Searched refs:GridFunctionType (Results 1 – 14 of 14) sorted by relevance

/dports/math/dune-fem/dune-fem-d1c625e6d51167d0cce57de6adcef21f548a8f82/dune/fem/gridpart/geometrygridpart/
H A Dcapabilities.hh25 template< class GridFunctionType >
26 struct hasGrid< GeometryGridPart< GridFunctionType > >
32 template< class GridFunctionType >
35 typedef typename GridFunctionType::GridPartType HostGridPartType;
41 template< class GridFunctionType >
42 struct isCartesian< GeometryGridPart< GridFunctionType > >
56 template< class GridFunctionType, int codim >
57 struct hasEntity< GeometryGridPart< GridFunctionType >, codim >
64 template< class GridFunctionType, int codim >
72 template< class GridFunctionType >
[all …]
H A Dentity.hh27 typedef typename Traits::GridFunctionType GridFunctionType; typedef in Dune::Fem::GeometryGridPartEntity
50 GeometryGridPartEntity ( const GridFunctionType &gridFunction, HostEntityType hostEntity ) in GeometryGridPartEntity()
83 const GridFunctionType &gridFunction () const in gridFunction()
91 const GridFunctionType *gridFunction_ = nullptr;
104 typedef typename Traits::GridFunctionType GridFunctionType; typedef in Dune::Fem::GeometryGridPartEntity
130 GeometryGridPartEntity ( const GridFunctionType &gridFunction, HostEntityType hostEntity ) in GeometryGridPartEntity()
195 const GridFunctionType &gridFunction () const in gridFunction()
202 const GridFunctionType *gridFunction_ = nullptr;
H A Ddatahandle.hh24 typedef typename GridFamily::GridFunctionType GridFunctionType; typedef in Dune::Fem::GeometryGridPartDataHandle
30 GeometryGridPartDataHandle ( WrappedHandle &handle, const GridFunctionType &gridFunction ) in GeometryGridPartDataHandle()
67 const GridFunctionType &gridFunction_;
86 EntityProxy ( const GridFunctionType &gridFunction_, const HostEntity &hostEntity ) in EntityProxy()
H A Dintersectioniterator.hh31 typedef typename Traits::GridFunctionType GridFunctionType; typedef in Dune::Fem::GeometryGridPartIntersectionIterator
52 const GridFunctionType *gridFunction_ = nullptr;
H A Dintersection.hh38 typedef typename Traits::GridFunctionType GridFunctionType; typedef in Dune::Fem::GeometryGridPartIntersection
51 …GeometryGridPartIntersection ( const GridFunctionType &gridFunction, const typename ElementGeometr… in GeometryGridPartIntersection()
184 const GridFunctionType &gridFunction () const in gridFunction()
192 const GridFunctionType *gridFunction_ = nullptr;
/dports/math/dune-fem/dune-fem-d1c625e6d51167d0cce57de6adcef21f548a8f82/dune/fem/gridpart/
H A Dgeometrygridpart.hh36 template< class GridFunctionType >
47 typedef GridFunction GridFunctionType; typedef
55 const GridFunctionType *gridFunction_ = nullptr;
66 typedef GridFunction GridFunctionType; typedef
77 typedef GridFunction GridFunctionType; typedef
78 typedef typename GridFunctionType::GridPartType HostGridPartType;
127 typedef GridFunction GridFunctionType; typedef
183 typedef GridFunction GridFunctionType; typedef in Dune::Fem::GeometryGridPart
187 typedef GeometryGridPart< GridFunctionType > ThisType;
192 typedef typename GridFunctionType::GridPartType HostGridPartType;
[all …]
/dports/math/dune-fem/dune-fem-d1c625e6d51167d0cce57de6adcef21f548a8f82/dune/fem/function/localfunction/
H A Dconst.hh129 typedef DiscreteFunctionType GridFunctionType; typedef in Dune::Fem::ConstLocalDiscreteFunction
273 const GridFunctionType &gridFunction() const { return discreteFunction(); } in gridFunction()
302 typedef GF GridFunctionType; typedef
303 typedef typename GridFunctionType::LocalFunctionType::EntityType EntityType;
310 explicit Type ( const GridFunctionType &gridFunction ) in Type()
311 : GridFunctionType::LocalFunctionType( gridFunction ), in Type()
315 : GridFunctionType::LocalFunctionType( gridFunction ), in Type()
361 const GridFunctionType &gridFunction () const { return gridFunction_; } in gridFunction()
364 const GridFunctionType &gridFunction_;
373 typedef GF GridFunctionType; typedef
[all …]
/dports/math/dune-fem/dune-fem-d1c625e6d51167d0cce57de6adcef21f548a8f82/dune/fempy/function/
H A Dsimplegridfunction.hh393 typedef Dune::Python::SimpleGridFunction<GV,Evaluate> GridFunctionType; typedef
394 … typedef decltype(localFunction(std::declval<const GridFunctionType&>())) LocalFunctionType;
402 explicit Type ( const GridFunctionType &gridFunction ) in Type()
406 explicit Type ( const EntityType &entity, const GridFunctionType &gridFunction ) in Type()
445 const GridFunctionType &gridFunction () const { return gridFunction_; } in gridFunction()
448 const GridFunctionType &gridFunction_;
/dports/math/dune-fem/dune-fem-d1c625e6d51167d0cce57de6adcef21f548a8f82/dune/fem/schemes/
H A Ddirichletwrapper.hh91 template <class GridFunctionType>
92 auto jacobian ( const GridFunctionType &u, JacobianOperatorType &jOp ) const in jacobian()
H A Delliptic.hh209 template <class GridFunctionType>
210 void jacobian ( const GridFunctionType &u, JacobianOperatorType &jOp ) const in jacobian()
212 template <class GridFunctionType>
213 void assemble ( const GridFunctionType &u, JacobianOperatorType &jOp ) const;
H A Ddirichletconstraints.hh216 template < class GridFunctionType, class DiscreteFunctionType,
217 …ename = std::enable_if_t< std::is_base_of<Dune::Fem::HasLocalFunction, GridFunctionType>::value > >
218 void operator ()( const GridFunctionType &u, in operator ()()
225 Dune::Fem::ConstLocalFunction< GridFunctionType > uLocal( u ); in operator ()()
H A Ddgelliptic.hh213 template <class GridFunctionType>
214 void apply ( const GridFunctionType &u, JacobianOperatorType &jOp ) const;
/dports/math/dune-fem/dune-fem-d1c625e6d51167d0cce57de6adcef21f548a8f82/dune/fem/space/common/
H A Dinterpolate.hh65 typedef GridFunctionAdapter< Function, GridPartType > GridFunctionType; in interpolate() typedef
67 GridFunctionType uGrid( "uGrid", u, v.space().gridPart() ); in interpolate()
/dports/math/dune-fem/dune-fem-d1c625e6d51167d0cce57de6adcef21f548a8f82/dune/fem/space/test/
H A Dl2projection.cc579 typedef GridFunctionAdapter< ExactSolution, GridPartType > GridFunctionType; in algorithm() typedef
580GridFunctionType exactSolution( "exact solution", f, solution.gridPart(), solution.space().order()… in algorithm()