Skip to content
Snippets Groups Projects

Read values of z for z views

Merged René Heß requested to merge bugfix/nonlinearjacboianapplyengine into master
1 file
+ 3
3
Compare changes
  • Side-by-side
  • Inline
@@ -201,12 +201,12 @@ namespace Dune{
template<typename LFSUC>
void loadCoefficientsLFSUInside(const LFSUC & lfsu_s_cache){
global_sl_view.read(xl);
global_zl_view.read(xl);
global_zl_view.read(zl);
}
template<typename LFSUC>
void loadCoefficientsLFSUOutside(const LFSUC & lfsu_n_cache){
global_sn_view.read(xn);
global_zn_view.read(xn);
global_zn_view.read(zn);
}
template<typename LFSUC>
void loadCoefficientsLFSUCoupling(const LFSUC & lfsu_c_cache)
@@ -256,7 +256,7 @@ namespace Dune{
Dune::PDELab::LocalAssemblerCallSwitch<LOP,LOP::doAlphaSkeleton>::
nonlinear_jacobian_apply_skeleton(lop,ig,
lfsu_s_cache.localFunctionSpace(),xl,zl,lfsv_s_cache.localFunctionSpace(),
lfsu_n_cache.localFunctionSpace(),xn,zl,lfsv_n_cache.localFunctionSpace(),
lfsu_n_cache.localFunctionSpace(),xn,zn,lfsv_n_cache.localFunctionSpace(),
rl_view,rn_view);
}
Loading