You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pages/documentation_matlab/SingleSlipModel.html
+22-22Lines changed: 22 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -81,22 +81,21 @@
81
81
{% endhighlight %}
82
82
83
83
{% highlight matlab %}
84
-
% We may visualize the orientation depedence of the spin tensor as a quiver
85
-
% plot
86
-
plot(Omega,'section','sigma')
87
-
{% endhighlight %}
88
-
<center>
89
-
{% include inline_image.html file="SingleSlipModel_01.png" %}
90
-
</center><p>or as the divergence of this vectorfield</p>
91
-
{% highlight matlab %}
92
-
plotSection(div(Omega),'sigma')
84
+
% We may visualize the orientation depedence of the spin tensor by plotting
85
+
% its divergence in sigma sections and on top of it the spin tensors as a
86
+
% quiver plot
93
87
88
+
plotSection(div(Omega),'sigma','noGrid')
94
89
mtexColorMap blue2red
95
90
mtexColorbar
91
+
92
+
hold on
93
+
plot(Omega,'add2all','linewidth',1,'color','k')
94
+
hold off
96
95
{% endhighlight %}
97
96
<center>
98
-
{% include inline_image.html file="SingleSlipModel_02.png" %}
99
-
</center><p>The divergence plots can be read as follows. Negative (blue) regions indicate orientations that increase in volume, whereas positive regions indicate orientations that decrease in volume. Accordingly, we expect the texture to become more and more concentrated within the blue regions. In the example example illustrated above with only the second slip system beeing active, we would expect the c-axis to align more and more with the the z-direction.</p><h2id="10">Solutions of the Continuity Equation</h2><p>The solutions of the continuity equation can be analytically computed and are available via the command <ahref="SO3FunSBF.SO3FunSBF.html"><codeclass="language-plaintext highlighter-rouge">SO3FunSBF</code></a>. This command takes as input the specific slips system <codeclass="language-plaintext highlighter-rouge">sS</code> and the makroscopic strain tensor <codeclass="language-plaintext highlighter-rouge">E</code></p>
97
+
{% include inline_image.html file="SingleSlipModel_01.png" %}
98
+
</center><p>The divergence plots can be read as follows. Negative (blue) regions indicate orientations that increase in volume, whereas positive regions indicate orientations that decrease in volume. Accordingly, we expect the texture to become more and more concentrated within the blue regions. In the example example illustrated above with only the second slip system beeing active, we would expect the c-axis to align more and more with the the z-direction.</p><h2id="9">Solutions of the Continuity Equation</h2><p>The solutions of the continuity equation can be analytically computed and are available via the command <ahref="SO3FunSBF.SO3FunSBF.html"><codeclass="language-plaintext highlighter-rouge">SO3FunSBF</code></a>. This command takes as input the specific slips system <codeclass="language-plaintext highlighter-rouge">sS</code> and the makroscopic strain tensor <codeclass="language-plaintext highlighter-rouge">E</code></p>
100
99
{% highlight matlab %}
101
100
odf1 = SO3FunSBF(sSOli(1),E)
102
101
odf2 = SO3FunSBF(sSOli(2),E)
@@ -130,43 +129,44 @@
130
129
plotSection(odf2,'sigma')
131
130
{% endhighlight %}
132
131
<center>
133
-
{% include inline_image.html file="SingleSlipModel_03.png" %}
134
-
</center><p>Lets visualize these solution by their pole figures</p>
132
+
{% include inline_image.html file="SingleSlipModel_02.png" %}
133
+
</center><p>We observe exactly the concentration of the c-axis around z as predicted by the model. This can be seen even more clear when looking a the pole figures</p>
{% include inline_image.html file="SingleSlipModel_06.png" %}
155
+
{% include inline_image.html file="SingleSlipModel_05.png" %}
156
156
</center><p>We observe that the pole figure with respect to \(n \times b\) is always uniform, where \(n\) is the slip normal and \(b\) is the slip direction.</p><p>Since in practice all three slip systems are active we can model the resulting ODF as a linear combination of the different basis functions</p>
{% include inline_image.html file="SingleSlipModel_07.png" %}
163
-
</center><h2id="17">Checking the for steady state</h2><p>We may also check for which orientations an ODF is already in a steady state of the continous equation, i.e., the time derivative \(\text{div}(f \Omega) = 0\) is zero.</p>
162
+
{% include inline_image.html file="SingleSlipModel_06.png" %}
163
+
</center><h2id="16">Checking the for steady state</h2><p>We may also check for which orientations an ODF is already in a steady state of the continous equation, i.e., the time derivative \(\text{div}(f \Omega) = 0\) is zero.</p>
164
164
{% highlight matlab %}
165
165
plotSection(div(odf2 .* Omega),'sigma')
166
166
mtexColorMap blue2red
167
167
mtexColorbar
168
168
setColorRange(max(abs(clim))*[-1,1])
169
169
{% endhighlight %}
170
170
<center>
171
-
{% include inline_image.html file="SingleSlipModel_08.png" %}
171
+
{% include inline_image.html file="SingleSlipModel_07.png" %}
0 commit comments