Von mises ideal plastic material, still couple of bugs

This commit is contained in:
Olli Väinölä
2015-12-17 17:13:23 +02:00
parent 695a9134a9
commit 80f021e16b
5 changed files with 690 additions and 24 deletions
+3 -15
View File
@@ -1,13 +1,11 @@
# This file is a part of JuliaFEM.
# License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE.md
include("vonmises.jl")
include("elasticplastic.jl")
# Elasticity problems
abstract ElasticityProblem <: AbstractProblem
abstract PlaneStressElasticityProblem <: ElasticityProblem
abstract ElasticityProblem <: AbstractProblem
abstract PlaneStressElasticityProblem <: ElasticityProblem
function get_unknown_field_name{P<:ElasticityProblem}(::Type{P})
return "displacement"
@@ -17,14 +15,6 @@ function get_unknown_field_type{P<:ElasticityProblem}(::Type{P})
return Vector{Float64}
end
function get_unknown_field_name{P<:ElasticPlasticProblem}(::Type{P})
return "displacement"
end
function get_unknown_field_type{P<:ElasticPlasticProblem}(::Type{P})
return Vector{Float64}
end
# 3D Elasticity problems
function ElasticityProblem(dim::Int=3, elements=[])
return Problem{ElasticityProblem}("elasticity problem", dim, elements)
@@ -67,8 +57,6 @@ https://en.wikipedia.org/wiki/Hooke's_law
"""
function get_residual_vector{P<:ElasticityProblem}(problem::Problem{P}, element::Element, ip::IntegrationPoint, time::Number; variation=nothing)
#function get_residual_vector{P<:ElasticPlasticProblem}(problem::Problem{P}, element::Element, ip::IntegrationPoint, time::Number; variation=nothing)
r = zeros(Float64, problem.dim, length(element))
J = get_jacobian(element, ip, time)
+247
View File
@@ -0,0 +1,247 @@
# This file is a part of JuliaFEM.
# License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE.md
include("vonmises.jl")
# Elasticity problems
abstract ElasticPlasticProblem <: AbstractProblem
abstract PlaneStressElasticPlasticProblem <: ElasticPlasticProblem
function get_unknown_field_name{P<:ElasticPlasticProblem}(::Type{P})
return "displacement"
end
function get_unknown_field_type{P<:ElasticPlasticProblem}(::Type{P})
return Vector{Float64}
end
# 3D Elasticity problems
function ElasticPlasticProblem(dim::Int=3, elements=[])
return Problem{ElasticPlasticProblem}("elasticplastic problem", dim, elements)
end
# 2D Plane stress elasticity problems
function PlaneStressElasticPlasticProblem(dim::Int=2, elements=[])
return Problem{PlaneStressElasticPlasticProblem}("plane stress elasticplastic problem", dim, elements)
end
function get_residual_vector{P<:PlaneStressElasticPlasticProblem}(problem::Problem{P}, element::Element, ip::IntegrationPoint, time::Number; variation=nothing)
r = zeros(Float64, problem.dim, length(element))
J = get_jacobian(element, ip, time)
# internal forces
if haskey(element, "youngs modulus") && haskey(element, "poissons ratio")
if !haskey(element, "integration points")
if P == PlaneStressElasticPlasticProblem
last_stress = zeros(2,2)
last_strain = zeros(2,2)
else
last_stress = zeros(3,3)
last_strain = zeros(3,3)
end
else
for each_ip in element("integration points", time)
if isapprox(each_ip.xi, ip.xi)
last_stress = ip("stress", time)
last_strain = ip("stress", time)
break
end
end
end
u = element("displacement", time, variation)
grad = element(ip, time, Val{:grad})
gradu = grad*u
# deformation gradient
F = I + gradu
E = 1/2*(F'*F - I)
# material
young = element("youngs modulus", ip, time)
poisson = element("poissons ratio", ip, time)
stress_y = element("yield stress", time).data
mu = young/(2*(1+poisson))
lambda = young*poisson/((1+poisson)*(1-2*poisson))
if P == PlaneStressElasticPlasticProblem
lambda = 2*lambda*mu/(lambda + 2*mu) # <- correction for 2d problems
end
dstrain = E - last_strain
material_model = element("material model", time)
s = last_stress
de = copy(ForwardDiff.get_value(dstrain))
if P == PlaneStressElasticPlasticProblem
C = stiffnessTensorPlaneStress(young, poisson)
s_v = [s[1,1], s[2,2], s[1,2]]
de_ = [de[1,1], de[2,2], de[1,2]]
problem_stress_type = :PlaneStressElasticPlasticProblem
else
C = stiffnessTensor(young, poisson)
s_v = [s[1,1], s[2,2], s[3,3], s[2,3], s[1,3], s[1,2]]
de_ = [de[1,1], de[2,2], de[3,3], de[2,3], de[1,3], de[1,2]]
problem_stress_type = :ElasticPlasticProblem
end
dep = zeros(3)
stress_inc, dep = calculate_stress(de_,
s_v,
C,
stress_y,
Val{:vonMises},
Val{problem_stress_type})
nd = [dep[1] dep[3];
dep[3] dep[2]]
# a = dstrain - nd
# b = C * a
info("%% ", dep)
dif = dstrain - nd
mm = [dif[1,1], dif[2,2], dif[1,2]]
s_v += C * mm
info("--: ", ForwardDiff.get_value(s_v))
# stress
if P == PlaneStressElasticPlasticProblem
S = [s_v[1] s_v[3];
s_v[3] s_v[2]]
else
S = [s_v[1] s_v[6] s_v[5];
s_v[6] s_v[2] s_v[4];
s_v[5] s_v[4] s_v[3]]
end
r += F*S*grad*det(J)
end
# external forces - volume load
if haskey(element, "displacement load")
basis = element(ip, time)
b = element("displacement load", ip, time)
r -= b*basis*det(J)
end
# external forces - surface traction force
if haskey(element, "displacement traction force")
basis = element(ip, time)
T = element("displacement traction force", ip, time)
JT = transpose(J)
s = size(JT, 2) == 1 ? JT : cross(JT[:,1], JT[:,2])
r -= T*basis*norm(s)
end
return vec(r)
end
#=
function get_residual_vector{P<:ElasticPlasticProblem}(problem::Problem{P}, element::Element, ip::IntegrationPoint, time::Number; variation=nothing)
r = zeros(Float64, problem.dim, length(element))
J = get_jacobian(element, ip, time)
info("_____________________")
# internal forces
if haskey(element, "youngs modulus") && haskey(element, "poissons ratio")
if !haskey(element, "integration points")
if P == PlaneStressElasticPlasticProblem
last_stress = zeros(2,2)
last_strain = zeros(2,2)
else
last_stress = zeros(3,3)
last_strain = zeros(3,3)
end
else
for each_ip in element("integration points", time)
if isapprox(each_ip.xi, ip.xi)
last_stress = ip("stress", time)
last_strain = ip("stress", time)
break
end
end
end
u = element("displacement", time, variation)
grad = element(ip, time, Val{:grad})
gradu = grad*u
# deformation gradient
F = I + gradu
# material
young = element("youngs modulus", ip, time)
poisson = element("poissons ratio", ip, time)
mu = young/(2*(1+poisson))
lambda = young*poisson/((1+poisson)*(1-2*poisson))
if P == PlaneStressElasticityProblem
lambda = 2*lambda*mu/(lambda + 2*mu) # <- correction for 2d problems
end
# strain
E = 1/2*(F'*F - I)
#E = 1/2*(gradu + gradu') # finite strain (total)
young = element("youngs modulus", ip, time)
poisson = element("poissons ratio", ip, time)
stress_y = element("yield stress", time).data
dstrain = E - last_strain
material_model = element("material model", time)
s = last_stress
de = ForwardDiff.get_value(dstrain)
if P == PlaneStressElasticPlasticProblem
C = stiffnessTensorPlaneStress(young, poisson)
s_v = [s[1,1], s[2,2], s[1,2]]
de_ = [de[1,1], de[2,2], de[1,2]]
problem_stress_type = :PlaneStressElasticPlasticProblem
else
C = stiffnessTensor(young, poisson)
s_v = [s[1,1], s[2,2], s[3,3], s[2,3], s[1,3], s[1,2]]
de_ = [de[1,1], de[2,2], de[3,3], de[2,3], de[1,3], de[1,2]]
problem_stress_type = :ElasticPlasticProblem
end
stress_inc, lambda = plastic_multiplier = calculate_stress(de_,
s_v,
C,
stress_y,
Val{:vonMises},
Val{problem_stress_type})
# dep = lambda * dfds(s)
# upate_material_parameters!(...)
s_new = s_v + stress_inc
#S = [s_v[1] s_v[6] s_v[5];
# s_v[6] s_v[2] s_v[4];
# s_v[5] s_v[4] s_v[3]]
S = [s_new[1] s_new[3];
s_new[3] s_new[2]]
# S = C * (E - dep)
info("Stress: ", vec(ForwardDiff.get_value(S)))
# stress
#S = lambda*trace(E)*I + 2*mu*E
r += F*S*grad*det(J)
end
# external forces - volume load
if haskey(element, "displacement load")
basis = element(ip, time)
b = element("displacement load", ip, time)
r -= b*basis*det(J)
end
# external forces - surface traction force
if haskey(element, "displacement traction force")
basis = element(ip, time)
T = element("displacement traction force", ip, time)
JT = transpose(J)
s = size(JT, 2) == 1 ? JT : cross(JT[:,1], JT[:,2])
r -= T*basis*norm(s)
end
return vec(r)
end
=# #fff
+96 -4
View File
@@ -1,5 +1,4 @@
using ForwardDiff
# using NLsolve
"""
Create a isotropic Hooke material matrix C
@@ -31,6 +30,17 @@ function stiffnessTensor(E, ν)
0 0 0 0 0 b].*multiplier
end
# Creating functions for newton: xₙ₊₁ = xₙ - df⁻¹ * f and initial values
function find_root!(f, df, x; max_iter=50, norm_acc=1e-10)
converged = false
for i=1:max_iter
dx = df(x) \ -f(x)
x += dx
norm(dx) < norm_acc && (converged = true; break)
end
converged || error("no convergence!")
x
end
type State
C :: Array{Float64, 2}
@@ -176,7 +186,9 @@ function calculate_stress!(dstrain, mat::State, ::Type{Val{:vonMises}})
end
end
function calculate_stress!(dstrain, stress, C, stress_y, ::Type{Val{:vonMises}})
function calculate_stress(dstrain, stress, C, stress_y,
::Type{Val{:vonMises}},
::Type{Val{:ElasticPlasticProblem}})
# Test stress
stress_tria = stress + C * dstrain
@@ -184,7 +196,7 @@ function calculate_stress!(dstrain, stress, C, stress_y, ::Type{Val{:vonMises}})
yield = vonMisesYield(stress_tria, stress_y)
if isless(yield, 0.0)
# stress[i] = stress_tria[i]
return 0.0
return 0.0
else
# Yielding happened
# Creating functions for newton: xₙ₊₁ = xₙ - df⁻¹ * f and initial values
@@ -193,7 +205,7 @@ function calculate_stress!(dstrain, stress, C, stress_y, ::Type{Val{:vonMises}})
df = ForwardDiff.jacobian(f)
# Calculating root
# result = nlsolve(not_in_place(f, df), initial_guess).zero
# result = nlsolve(not_in_place(f, df), initial_guess).zero
max_iter = 10
converged = false
for i=1:5
@@ -208,3 +220,83 @@ function calculate_stress!(dstrain, stress, C, stress_y, ::Type{Val{:vonMises}})
end
end
##################################################################################
# ----- AFTER THIS POINT: VON MISES : PLANE STRESS IMPLEMENTATION ----- #
##################################################################################
"""
http://www.efunda.com/formulae/solid_mechanics/mat_mechanics/hooke_plane_stress.cfm
"""
function stiffnessTensorPlaneStress(E, ν)
a = 1 - ν^2
b = 1 - ν
multiplier = E / a
return Float64[1 ν 0;
ν 1 0;
0 0 b].*multiplier
end
# von mises: plane stress
# https://andriandriyana.files.wordpress.com/2008/03/yield_criteria.pdf
function stress_eq_plane_stress(stress)
s1, s2, t12 = stress
# Calculating principal stresses
# http://www.engineersedge.com/material_science/principal_vonmises_stress__13418.htm
se1 = (s1 + s2)/2 + sqrt(((s1 - s2)/2)^2 + t12^2)
se2 = (s1 + s2)/2 - sqrt(((s1 - s2)/2)^2 + t12^2)
return sqrt(se1^2 -se1*se2 + se2^2)
end
# https://andriandriyana.files.wordpress.com/2008/03/yield_criteria.pdf
function vonMisesYieldPlaneStress(stress, stress_y)
stress_eq_plane_stress(stress) - stress_y
end
function vonMisesRootPlaneStress(params, dstrain, C, stress_y, stress_base)
# Creating wrapper for gradient
vm_wrap(stress_) = vonMisesYieldPlaneStress(stress_, stress_y)
dfds = ForwardDiff.gradient(vm_wrap)
# Stress rate and total strain
dstress = params[1:3]
stress_tot = vec(stress_base) + params[1:3]
# Calculating plastic strain rate
dstrain_p = params[end] * dfds(stress_tot)
# Calculating equations
function_1 = dstress - C * (dstrain - dstrain_p)
function_2 = vm_wrap(stress_tot)
[vec(function_1); function_2]
end
function calculate_stress(dstrain, stress, C, stress_y,
::Type{Val{:vonMises}},
::Type{Val{:PlaneStressElasticPlasticProblem}})
# Test stress
dstress = C * dstrain
stress_tria = stress + dstress
# Calculating and checking for yield
yield = vonMisesYieldPlaneStress(stress_tria, stress_y)
if isless(yield, 0.0)
return dstress, zeros(3)
else
info("yielded")
# Yielding happened
# Creating functions for newton: xₙ₊₁ = xₙ - df⁻¹ * f and initial values
x = [vec(stress_tria - stress); 0.0]
f(stress_) = vonMisesRootPlaneStress(stress_, dstrain, C, stress_y, stress)
df = ForwardDiff.jacobian(f)
# Calculating root
results = find_root!(f, df, x)
stress_tot = stress + results[1:3]
plastic_multiplier = results[end]
vm_wrap(stress_) = vonMisesYieldPlaneStress(stress_, stress_y)
dfds = ForwardDiff.gradient(vm_wrap)
dep = plastic_multiplier * dfds(stress_tot)
info("II ", stress_tot)
return results[1:3], dep
end
end