<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.imechanica.org" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>iMechanica - FEM - Comments</title>
 <link>http://www.imechanica.org/taxonomy/term/846</link>
 <description>Comments for &quot;FEM&quot;</description>
 <language>en</language>
<item>
 <title>Why FEM is not used in CFD</title>
 <link>http://www.imechanica.org/node/1479#comment-9197</link>
 <description>&lt;p&gt;
I just came across this nice discussion, even though it was posted a long time ago.
&lt;/p&gt;
&lt;p&gt;
In my opinion you are quite critical with respect to the &amp;quot;complex geometry&amp;quot; advantage of FEM. FEM is very good at handling complex geometries because it can handle triangles. FDM is very awkward with triangles. FDM can handle complex geometries by using generalized curvilinear/boundary fitted coordinates, by variable grid sizes and by local grid refinement, but none of these are easy to do.
&lt;/p&gt;
&lt;p&gt;
Then why is FEM not used in CFD? Simply because directional derivatives are difficult on an unstructured grid. This concerns transport phenomena: advection processes. Advection is discretised much easier on a structured (i.e. locally orthogonal) grid, particularly when you want high accuracy and be able to capture shocks as well (e.g. using flux limiters). Probably FEM-people have found appropriate ways to deal with advection too, but not as powerful and simple as it is done in FDM.
&lt;/p&gt;
&lt;p&gt;
FVM methods are somewhere in between and combine some of the advantages and disadvantages of both. You can use&amp;nbsp; rectangular volumes in large parts of the domain and polygonal volumes near boundaries or internal interfaces. At the expense of complex administration and complex approximation schemes, you may get flexibility *and* accuracy.
&lt;/p&gt;
&lt;br class=&quot;clear&quot; /&gt;</description>
 <pubDate>Sat, 22 Nov 2008 03:46:33 -0500</pubDate>
 <dc:creator>Edwin Vollebregt</dc:creator>
 <guid isPermaLink="false">comment 9197 at http://www.imechanica.org</guid>
</item>
<item>
 <title>thank you very much Mr.</title>
 <link>http://www.imechanica.org/node/4047#comment-8933</link>
 <description>&lt;p&gt;thank you very much Mr. Temesgen&lt;/p&gt;
&lt;br class=&quot;clear&quot; /&gt;</description>
 <pubDate>Fri, 17 Oct 2008 01:43:09 -0400</pubDate>
 <dc:creator>sameer2008</dc:creator>
 <guid isPermaLink="false">comment 8933 at http://www.imechanica.org</guid>
</item>
<item>
 <title>You should include the BC&#039;s</title>
 <link>http://www.imechanica.org/node/4047#comment-8921</link>
 <description>&lt;p&gt;
&lt;font size=&quot;2&quot;&gt;Hi Sameer,&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font size=&quot;2&quot;&gt;With out the BC&amp;#39;s, the stiffness matrices are simply singular.&lt;br /&gt;
This isn&amp;#39;t a numerical issue. Even when you solve a DE analytically your&lt;br /&gt;
solution is not uniquely defined until you supply appropriate boundary&lt;br /&gt;
conditions. So include the BC before you go ahead.&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
I am Temesgen and I approve this message!
&lt;/p&gt;
&lt;br class=&quot;clear&quot; /&gt;</description>
 <pubDate>Wed, 15 Oct 2008 12:29:15 -0400</pubDate>
 <dc:creator>Temesgen Markos</dc:creator>
 <guid isPermaLink="false">comment 8921 at http://www.imechanica.org</guid>
</item>
<item>
 <title> 


thank you very much. i</title>
 <link>http://www.imechanica.org/node/4047#comment-8918</link>
 <description>&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
thank you very much. i will do the things that u told.&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
but if i dont include the boundary condition and simpliy find the stiffness matrix for each local tetrahedron and to get the global stiffness matrix, i just add the&amp;nbsp; local matrices in there corresponding&amp;nbsp; positions with respect to the global matrix, even after that it will show any problem?&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;for assembling the local matrices i just&amp;nbsp; did these things
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;kk=zeros(total_nod,total_nod); global stiffnes matrix
&lt;/p&gt;
&lt;p&gt;
kk(t(iel,:),t(iel,:))=kk(t(iel,:),t(iel,:))+k; where k is local stiffness matrix for t(iel,:) element
&lt;/p&gt;
&lt;p&gt;
i am using matlab software
&lt;/p&gt;
&lt;p&gt;
once again thank you ( if u have any suggestion plz suggest )&amp;nbsp;
&lt;/p&gt;
&lt;br class=&quot;clear&quot; /&gt;</description>
 <pubDate>Wed, 15 Oct 2008 11:27:27 -0400</pubDate>
 <dc:creator>sameer2008</dc:creator>
 <guid isPermaLink="false">comment 8918 at http://www.imechanica.org</guid>
</item>
<item>
 <title>Re: Problem with 3D Fem sparse matrix ( plz help me)</title>
 <link>http://www.imechanica.org/node/4047#comment-8911</link>
 <description>&lt;p&gt;
&lt;font size=&quot;2&quot;&gt;What I would do in your case is to try with a simple example done by hand. Thus, you know what numbers the stiffness matrix should have. There are some reasons to get a singular matrix. One of them might be that the global stiffness matrix is not variationally correct meaning that the essential boundary conditions are not properly included in your stiffness matrix. After you form the global stiffness matrix you need to modify it along with the force vector to include the essential boundary conditions. Otherwise the matrix will be singular. If this is not your problem then a wrong assembly procedure might be the cause.&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font size=&quot;2&quot;&gt;Best wishes in your project, &lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font size=&quot;2&quot;&gt;Alejandro A. Ortiz&lt;/font&gt;
&lt;/p&gt;
&lt;br class=&quot;clear&quot; /&gt;</description>
 <pubDate>Wed, 15 Oct 2008 02:34:14 -0400</pubDate>
 <dc:creator>Alejandro A. Ortiz</dc:creator>
 <guid isPermaLink="false">comment 8911 at http://www.imechanica.org</guid>
</item>
<item>
 <title>Positions for PhD Students in Mechanics: University of Trento</title>
 <link>http://www.imechanica.org/node/3621#comment-8690</link>
 <description>&lt;p&gt;
&amp;nbsp;Hello &lt;span class=&quot;submitted&quot;&gt; &lt;a href=&quot;http://imechanica.org/user/7083&quot; title=&quot;View user profile.&quot;&gt;DoQuangHuy&lt;/a&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p&gt;
I saw your request only now. We have an opening for PhD studentship in Trento.
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
The deadline is in a few days, Sept. the 19th.
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
Please, if you are still interested, look at:
&lt;/p&gt;
&lt;p&gt;
&lt;a href=&quot;http://portale.unitn.it/ateneo/portalpage.do?content_OID=31475&amp;amp;channelId=-8323&amp;amp;channel2Id=-19513&amp;amp;page=/jsp/editorial/editorial.jsp&amp;amp;programId=31476&amp;amp;activeLanguage=it&quot; title=&quot;http://portale.unitn.it/ateneo/portalpage.do?content_OID=31475&amp;amp;channelId=-8323&amp;amp;channel2Id=-19513&amp;amp;page=/jsp/editorial/editorial.jsp&amp;amp;programId=31476&amp;amp;activeLanguage=it&quot;&gt;http://portale.unitn.it/ateneo/portalpage.do?content_OID=31475&amp;amp;channelId...&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
Best regards,
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
Luca Deseri
&lt;/p&gt;
&lt;p&gt;
-------
&lt;/p&gt;
&lt;p&gt;
Luca Deseri, Ph.D.,
&lt;/p&gt;
&lt;p&gt;
D.I.M.S.-Dept. of Mechanical and Structural&lt;br /&gt;
Engineering, University of Trento,&lt;br /&gt;
via Mesiano, 77 I-38050 TRENTO-Italy
&lt;/p&gt;
&lt;p&gt;
email: &lt;a href=&quot;mailto:deseril@ing.unitn.it&quot;&gt;deseril@ing.unitn.it&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
Skype: lucalucaluca&lt;br /&gt;
&lt;a href=&quot;http://www.unife.it/db/elenco/hp.php/luca.deseri&quot; title=&quot;http://www.unife.it/db/elenco/hp.php/luca.deseri&quot;&gt;http://www.unife.it/db/elenco/hp.php/luca.deseri&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href=&quot;http://www.ing.unitn.it/dims/research_group/ssm/index.php#1&quot; title=&quot;http://www.ing.unitn.it/dims/research_group/ssm/index.php#1&quot;&gt;http://www.ing.unitn.it/dims/research_group/ssm/index.php#1&lt;/a&gt;
&lt;/p&gt;
&lt;br class=&quot;clear&quot; /&gt;</description>
 <pubDate>Tue, 16 Sep 2008 01:32:19 -0400</pubDate>
 <dc:creator>Luca Deseri</dc:creator>
 <guid isPermaLink="false">comment 8690 at http://www.imechanica.org</guid>
</item>
<item>
 <title>Thank you I appreciate your</title>
 <link>http://www.imechanica.org/node/3509#comment-8206</link>
 <description>&lt;p&gt;
&lt;font size=&quot;4&quot;&gt;&lt;strong&gt;Thank you I appreciate your suggestion.&lt;/strong&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font size=&quot;4&quot;&gt;&lt;strong&gt;I&amp;#39;ve got an excel table showing clearly the comparison, i can transmit it to everyone who wants to.&lt;/strong&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font size=&quot;4&quot;&gt;&lt;strong&gt;In another way I can send demo cd&amp;#39;s and also free them for 3 months for free so people can try and discover.&lt;/strong&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font size=&quot;4&quot;&gt;&lt;strong&gt;Just ASK&lt;/strong&gt;&lt;/font&gt;.&amp;nbsp;
&lt;/p&gt;
&lt;br class=&quot;clear&quot; /&gt;</description>
 <pubDate>Wed, 16 Jul 2008 10:53:57 -0400</pubDate>
 <dc:creator>Bernard-Marie Feron</dc:creator>
 <guid isPermaLink="false">comment 8206 at http://www.imechanica.org</guid>
</item>
<item>
 <title>This is just a suggestion. </title>
 <link>http://www.imechanica.org/node/3509#comment-8204</link>
 <description>&lt;p&gt;
&lt;font size=&quot;3&quot;&gt;Most of users are interested in more popular softwares may be because there is more information about them in the web. also chance of finding person who know that softwares is more.&amp;nbsp; i suggest you to make a comparision table between your software and similar softwares to show you advantages and also disadvantages of this software. &lt;strong&gt;what is possible with your software which is not possible with other more popular softwares? &lt;/strong&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;br class=&quot;clear&quot; /&gt;</description>
 <pubDate>Wed, 16 Jul 2008 10:26:36 -0400</pubDate>
 <dc:creator>RoozbehSanaei</dc:creator>
 <guid isPermaLink="false">comment 8204 at http://www.imechanica.org</guid>
</item>
<item>
 <title>do you need ?</title>
 <link>http://www.imechanica.org/node/3509#comment-8203</link>
 <description>&lt;p&gt;
Hi, do you need infos?
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;br class=&quot;clear&quot; /&gt;</description>
 <pubDate>Wed, 16 Jul 2008 09:15:53 -0400</pubDate>
 <dc:creator>Bernard-Marie Feron</dc:creator>
 <guid isPermaLink="false">comment 8203 at http://www.imechanica.org</guid>
</item>
<item>
 <title>Make a comparison table</title>
 <link>http://www.imechanica.org/node/3509#comment-8202</link>
 <description>&lt;p&gt;Roozbeh Sanaei.&lt;/p&gt;
&lt;p&gt;Iran University of Science and Technology.&lt;/p&gt;
&lt;p&gt;Acoust. Lab.&lt;/p&gt;
&lt;br class=&quot;clear&quot; /&gt;</description>
 <pubDate>Wed, 16 Jul 2008 08:05:44 -0400</pubDate>
 <dc:creator>Roozbeh Sanaei</dc:creator>
 <guid isPermaLink="false">comment 8202 at http://www.imechanica.org</guid>
</item>
<item>
 <title>Yes we are</title>
 <link>http://www.imechanica.org/node/3509#comment-8201</link>
 <description>&lt;p&gt;For the story: Oofelie has been developed in one single C++ monoltihic and object oriented code.&lt;/p&gt;
&lt;p&gt;
This way was chosen to optimize the strong couplings.
&lt;/p&gt;
&lt;p&gt;
We can answer to most of the demands and also more than ANSYS, but we have no industrial solution for High Frequency.
&lt;/p&gt;
&lt;p&gt;
We also import geometries in Step Iges etc... We can use enven the integrated post treatment or others like ParaView.
&lt;/p&gt;
&lt;p&gt;
The structure allows also other codes to dial with Oofelie Kernel.
&lt;/p&gt;
&lt;p&gt;
Regarding Trainings , we have video tutorials, Chinese, english and Portuguese.
&lt;/p&gt;
&lt;p&gt;
We have pdf with contents of training courses.
&lt;/p&gt;
&lt;p&gt;
We also organize trainings here in belgium.
&lt;/p&gt;
&lt;p&gt;
If you need more, don&amp;#39;t hesitate to contact  &lt;a href=&quot;mailto:support@open-engineering.com&quot;&gt;support@open-engineering.com&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;br class=&quot;clear&quot; /&gt;</description>
 <pubDate>Wed, 16 Jul 2008 07:15:00 -0400</pubDate>
 <dc:creator>Bernard-Marie Feron</dc:creator>
 <guid isPermaLink="false">comment 8201 at http://www.imechanica.org</guid>
</item>
<item>
 <title>What about ansys comparison? You seem real competitors</title>
 <link>http://www.imechanica.org/node/3509#comment-8200</link>
 <description>&lt;p&gt;
I&amp;#39;ve been checking on your website, I see that you have a full solution under the same interface, do you have any comparison table between you and ansys?
&lt;/p&gt;
&lt;p&gt;
More further , do you have support and training courses available?
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
thnx&amp;nbsp;
&lt;/p&gt;
&lt;br class=&quot;clear&quot; /&gt;</description>
 <pubDate>Wed, 16 Jul 2008 07:07:43 -0400</pubDate>
 <dc:creator>proE</dc:creator>
 <guid isPermaLink="false">comment 8200 at http://www.imechanica.org</guid>
</item>
<item>
 <title>simple </title>
 <link>http://www.imechanica.org/node/3509#comment-8185</link>
 <description>&lt;p&gt;
Just visit our &lt;a href=&quot;http://www.open-engineering.com&quot; title=&quot;www.open-engineering.com&quot;&gt;www.open-engineering.com&lt;/a&gt; , follow the link&amp;nbsp; : ask free demo cd
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
academic licenses do exist, classroomkits also, sdk if needed and finally licenses for industry.
&lt;/p&gt;
&lt;p&gt;
just ask !
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
regards
&lt;/p&gt;
&lt;p&gt;
OO&amp;nbsp;
&lt;/p&gt;
&lt;br class=&quot;clear&quot; /&gt;</description>
 <pubDate>Tue, 15 Jul 2008 10:53:55 -0400</pubDate>
 <dc:creator>Bernard-Marie Feron</dc:creator>
 <guid isPermaLink="false">comment 8185 at http://www.imechanica.org</guid>
</item>
<item>
 <title>where and how much </title>
 <link>http://www.imechanica.org/node/3509#comment-8184</link>
 <description>&lt;p&gt;
Hi oofelie, I&amp;#39;m reseracher, don&amp;#39;t know about your solution.
&lt;/p&gt;
&lt;p&gt;
How to get it and test it?
&lt;/p&gt;
&lt;p&gt;
Do you have any demo license or academic licenses?
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;br class=&quot;clear&quot; /&gt;</description>
 <pubDate>Tue, 15 Jul 2008 10:50:26 -0400</pubDate>
 <dc:creator>proE</dc:creator>
 <guid isPermaLink="false">comment 8184 at http://www.imechanica.org</guid>
</item>
<item>
 <title>stiffness matrix calculation of incompatible elements</title>
 <link>http://www.imechanica.org/node/1989#comment-7477</link>
 <description>&lt;p&gt;I am a student of M. Tech. 2nd year. My project topic for dissertation is &amp;quot;Numerical &amp;amp; Experimental Estimation of Fracture Toughness of Some Materials using Compact Tension Specimen&amp;quot;. In this dissertation I also wanted to develop a code which directly gives me the values of &lt;span class=&quot;yshortcuts&quot;&gt;stress intensity factor&lt;/span&gt; just like ansys. &lt;/p&gt;
&lt;p&gt;Actually I have develop an matlab programm (using linear quadrilateral element) which gives me the value of displacement at the cracktip using that i would be finding the displacement extrapolation method i would be calculating stress intensity factors&lt;/p&gt;
&lt;p&gt;But the major hindrance in my matlab code is that when i am calculating the stresses at the crack tip there is large deviation in cracktip stresses shown by matlab code and ansys. Looking at the ansys theory reference it was found that apart from four shape function i.e, N1, N2, N3 and N4 they are using two more shape function N5 and N6 whose values are (1-s^2) and (1-t^2) s for x-direction and t for y-direction respectively.&lt;/p&gt;
&lt;p&gt;Also such type of shape function is described in R. D. Cook, Bathe and Zienkiewics books which they are calling as non-conformal elements which are used&amp;nbsp;to remove the shear lock effect of linear quadrilateral elements and having co-efficient as a1 a2 for x-direction and a3 and a4 for y-direction. But nothing has been stated about the values of ai (i varies from 1 to 4). &lt;/p&gt;
&lt;p&gt;Hence Sir, I would be most thankful to you if you could give me guidelines regarding how to solve such type of FEM problem having non-conformal elements or u could give me reference where &lt;strong&gt;Problems are solved using Non-conformal elements &lt;/strong&gt;I would be most thankful to you&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#00407f&quot;&gt;Zoeb Kaizar Lakdawala &lt;br /&gt;
M. Tech (Industrial Process Equipment Design) &lt;br /&gt;
S. V. National Institute of Technology, Surat &lt;br /&gt;
Mobile : 09904288552&lt;/font&gt; &lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;br class=&quot;clear&quot; /&gt;</description>
 <pubDate>Fri, 16 May 2008 00:32:22 -0400</pubDate>
 <dc:creator>Zoeb Kaizar Lakdawala</dc:creator>
 <guid isPermaLink="false">comment 7477 at http://www.imechanica.org</guid>
</item>
</channel>
</rss>
