JuliaFEM / JuliaFEM.jl

The JuliaFEM software library is a framework that allows for the distributed processing of large Finite Element Models across clusters of computers using simple programming models. It is designed to scale up from single servers to thousands of machines, each offering local computation and storage.
http://juliafem.github.io/JuliaFEM.jl/latest/
MIT License
250 stars 66 forks source link

Mortar segmentation bugs #84

Closed ahojukka5 closed 7 years ago

ahojukka5 commented 7 years ago

Added 4 new tests, all are failing (see https://github.com/JuliaFEM/JuliaFEM.jl/blob/bug/mortar_discretization/test/test_problems_mortar_3d.jl and https://travis-ci.org/JuliaFEM/JuliaFEM.jl/builds/196842417)

A simple block model with interface between upper and lower block:

image

Set temperature boundary condition T=0.0 to top of upper block and T=1.0 to bottom of lower block. What should be expected is that we have a constant temperature T=0.5 at the interface as Mortar method should be able to deliver constant field over non-conforming interface without error.

ahojukka5 commented 7 years ago

This is now fixed, see PR #88.