Calculate shape functions using FEMBasis.jl

A lot of code is moved to FEMBasis.jl regarding
calculating basis / shape functions of finite elements.

* add FEMBasis to REQUIRE
* remove obsolete files
* remove obsolete test files
* make integration point iterable
* loosen type definitions
* get length of element rather from basis than connectivity
* calculate midpoint of reference element
* wrong input argument to eval_basis! fixed
This commit is contained in:
Jukka Aho
2017-08-05 11:33:43 +03:00
parent dcd24e8e01
commit fffb0071a0
16 changed files with 85 additions and 1231 deletions
+1 -1
View File
@@ -416,7 +416,7 @@ function (field::CCTV)(xi::Vector, time::Number)
return field.data(time)
end
function (field::CVTV)(xi::Vector, time::Number)
function (field::CVTV)(xi, time)
return field.data(xi, time)
end