Elastic: Difference between revisions

From Flooxs
Jump to navigation Jump to search
No edit summary
No edit summary
Line 29: Line 29:
\frac{\delta N_a}{\delta y} & \frac{\delta N_a}{\delta x} & 0 \\
\frac{\delta N_a}{\delta y} & \frac{\delta N_a}{\delta x} & 0 \\
0 & \frac{\delta N_a}{\delta z} & \frac{\delta N_a}{\delta y} \\
0 & \frac{\delta N_a}{\delta z} & \frac{\delta N_a}{\delta y} \\
\frac{\delta N_a}{\delta z} & 0 & \frac{\delta N_a}{\delta x} \\\end{array} \right ] </math>
\frac{\delta N_a}{\delta z} & 0 & \frac{\delta N_a}{\delta x} \\\end{array} \right ]  
 
\left {\begin{array}{c} u \\ v \\ w \\\end{array} \right </math>
<math>\delta \epsilon =  \sum  </math>

Revision as of 19:26, 11 August 2011

FLOOXS can solve for stress/strain caused by internal lattice mismatch, coefficient of thermal expansion mismatch, and the inverse piezoelectric effect. An example of the alagator/tcl commands that designate solving for elastic displacement are given below.

pdbSetString metal displacement Equation "elastic(displacement)" 
pdbSetString AlGaN displacement Equation "elastic(displacement)+IPZ(DevPsi)"
pdbSetString AlGaN displacement Equation "elastic(displacement)+BodyStrain(0.002)"
pdbSetString GaN displacement Equation "elastic(displacement)+BodyStrain(0.02e-6*(Temp-300.0))+IPZ(DevPsi)" 

The command "elastic()" takes the solution variable displacement, only, as its argument and must be present in all equation commands. The additional commands "IPZ()" and "BodyStrain()" add initial stress values to the equilibrium equation and consequently, the displacement due to inverse piezoelectric-induced stress or lattice or thermal expansion mismatch-induced stress is solved for. A detailed description of employing stress/strain physics into your model is described elsewhere. Here, we focus on how the equilibrium equation is implemented using the finite element method in FLOOXS.

As designated in the class diagram on the previous page. BodyStrain and IPZTerm are new classes derived from the ElasticTerm class. The code for these terms are in the file elastic.cc.

<math> \nabla\sigma +F = 0 </math>, is the equilibrium equation for elastic displacement

where <math>\sigma</math> is the strain and is related to the stress by the constitutive relation

<math> \sigma = D (\epsilon-\epsilon_0) </math> and F is the external force or body force.

The <math>\epsilon_0</math> term is the stress caused by the inverse piezoelectric effect, lattice mismatch, or thermal expansion mismatch.

The form of the equilibrium equation shown above is the differential form. Conversely, the weak or integral form of the equation is needed for the finite element method. It is given as <math> \int_{\Omega} \delta \epsilon^T \sigma d \Omega = \int_{\Omega} \delta \epsilon^T D (\epsilon - \epsilon_0) d \Omega </math>

Where <math>\Omega</math> is the domain. In this equation, the external force (body force) and traction forces at the boundary are neglected.

<math> \delta \epsilon = \sum \left [ \begin{array}{ccc} \frac{\delta N_a}{\delta x} & 0 & 0 \\

0 & \frac{\delta N_a}{\delta y} & 0 \\ 0 & 0 & \frac{\delta N_a}{\delta z} \\ \frac{\delta N_a}{\delta y} & \frac{\delta N_a}{\delta x} & 0 \\ 0 & \frac{\delta N_a}{\delta z} & \frac{\delta N_a}{\delta y} \\ \frac{\delta N_a}{\delta z} & 0 & \frac{\delta N_a}{\delta x} \\\end{array} \right ] \left {\begin{array}{c} u \\ v \\ w \\\end{array} \right </math>