all tests pass now

This commit is contained in:
Jukka Aho
2016-07-03 21:16:03 +03:00
parent eec6db657d
commit 757ba2b3d9
52 changed files with 607 additions and 853 deletions
+1 -9
View File
@@ -1,16 +1,9 @@
# This file is a part of JuliaFEM.
# License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE.md
module ElementTests
using JuliaFEM
using JuliaFEM.Test
using JuliaFEM.Core: AbstractProblem, Problem
using JuliaFEM.Core: Element, Seg2, Quad4
using JuliaFEM.Core: IntegrationPoint, solve!, get_jacobian
import JuliaFEM.Core: get_unknown_field_name, get_unknown_field_type, get_potential_energy
abstract HeatProblem <: AbstractProblem
function HeatProblem(dim::Int=1, elements=[])
@@ -104,4 +97,3 @@ function test_potential_energy_method_2()
# @test isapprox(temp, 2.93509690572300E+00) # tested using Code Aster
end
end