How do I have a continuously varying Young's Modulus using the pde toolbox?
Show older comments
I have to solve a problem where I need to be able to solve a static structural problem with a continuously varying Young's Modulus So I understand that the Young's Modulus, E, input to
structuralProperties(____,'YoungsModulus',E)
Must be in the form of a double rather than a function label so that leads me to doing this as a generic PDE, requiring me to specify the coefficients m, d, c, a, and f.
(λ+μ)∇(∇⋅u)+μ∇^2u+f=0
m ∂2/u∂t2+d ∂u/∂t−∇·(c⊗∇u)+au=f
I'm wondering how I should specify these coefficients. ('m' and 'd' should clearly be zero as it is time invariant)
'c' should just be (λ+μ) I believe so not too difficult.
I am having trouble translating the μ∇2u from the structural PDE to the generic PDE though. Would this have to be specified in the 'a' coefficient and if so how would one define the ∇^2 in a function form on the u vector.
I am also wondering how to define the f coefficient, I'm thinking it should either be a zero matrix or an identity matrix but since part of what I'm doing is interpolating the traction forces of the solution I'm wondering if I should be defining this as a function as well.
Any advice is greatly appreciated!
Cheers
Accepted Answer
More Answers (0)
Categories
Find more on Boundary Conditions in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!