<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Issues calculating Cd of a simple cube (beginner) in CFD Forum</title>
    <link>https://forums.autodesk.com/t5/cfd-forum/issues-calculating-cd-of-a-simple-cube-beginner/m-p/9549449#M5010</link>
    <description>&lt;P&gt;Ok, I see, thank you.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you just mind explaining how mesh sizing and element counts and stuff works (or link some resources)? Because mesh resolution certainly makes a big difference but I'm not sure how to adjust it properly and know how many elements I'd want for a good enough sim.&lt;/P&gt;&lt;P&gt;Also, I'm only getting the correct Z force of ~&lt;SPAN&gt;0.65 N on the bottom face (the one facing the flow), but there is also Z force (something like 0.2 N) on the top face and most tutorials tell me to use the sum of Z forces which would throw off Cd by a lot? Is that wrong and should I just be taking the force on the face(s) facing the flow into account?&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 29 May 2020 19:26:17 GMT</pubDate>
    <dc:creator>zifcani</dc:creator>
    <dc:date>2020-05-29T19:26:17Z</dc:date>
    <item>
      <title>Issues calculating Cd of a simple cube (beginner)</title>
      <link>https://forums.autodesk.com/t5/cfd-forum/issues-calculating-cd-of-a-simple-cube-beginner/m-p/9544802#M5003</link>
      <description>&lt;P&gt;Hi everyone, I'm new to CFD in general and I'm trying to calculate the coefficient of drag of a cube but I cannot get the right value (1.05 at standard conditions according to Wikipedia). I found &lt;A href="https://knowledge.autodesk.com/support/cfd/getting-started/caas/simplecontent/content/calculating-the-coefficient-drag-urbee-example.html" target="_blank" rel="noopener"&gt;this&lt;/A&gt;&amp;nbsp;Autodesk tutorial about this but no matter what I did I was getting wrong values. I also used the drag formula from that article but its just a rearrangement of the regular drag formula.&lt;/P&gt;&lt;P&gt;Since my mesh was extremely simple, the program autosized it to 10k elements. I tried increasing element count and mesh refinement up to like 200k which did change values but it still didn't give me the correct ones. I tried plugging in the Z axis (upwards) force from the wall calculator on top, bottom, top+bottom and all sides of the cube with the same cross sectional area (10x10cm cube so 0.01m2) and I also tried plugging in the values on the whole "tunnel" but none of that worked. I tried changing the size of the "tunnel" and other things I forgot at this point but all of that to no avail.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is one of those runs right here with all of the forces on all sides of the cube. Note that the arrows should be the other way around, Z force is greater on the bottom face.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="unknown (5).png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/776532i834151D402638A17/image-size/medium?v=v2&amp;amp;px=400" role="button" title="unknown (5).png" alt="unknown (5).png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I have attached my projects so it would be great if someone could take a look and tell me what I'm wrong.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2020 03:57:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/cfd-forum/issues-calculating-cd-of-a-simple-cube-beginner/m-p/9544802#M5003</guid>
      <dc:creator>zifcani</dc:creator>
      <dc:date>2020-05-28T03:57:07Z</dc:date>
    </item>
    <item>
      <title>Re: Issues calculating Cd of a simple cube (beginner)</title>
      <link>https://forums.autodesk.com/t5/cfd-forum/issues-calculating-cd-of-a-simple-cube-beginner/m-p/9546621#M5004</link>
      <description>&lt;P&gt;Hello Nuff Lee,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What kind of Cd values are you getting?&lt;/P&gt;
&lt;P&gt;The rar file you sent does not open here.&amp;nbsp; Please make sure it is not corrupt and share again.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Marwan&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2020 17:58:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/cfd-forum/issues-calculating-cd-of-a-simple-cube-beginner/m-p/9546621#M5004</guid>
      <dc:creator>marwan_azzam</dc:creator>
      <dc:date>2020-05-28T17:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: Issues calculating Cd of a simple cube (beginner)</title>
      <link>https://forums.autodesk.com/t5/cfd-forum/issues-calculating-cd-of-a-simple-cube-beginner/m-p/9546675#M5005</link>
      <description>&lt;P&gt;Hi, I'm sorry for that, I will reupload the file.&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, on the screenshot I included, for the Z force on the bottom face (Boundary ID 6), Cd=~1.45, for the force on the top face (Boundary ID 1), Cd=~&lt;SPAN&gt;0.42 and for the total Z force, Cd=~1.89.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The following is the code I'm using to calculate Cd:&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;rho = 1.20473
v = 10
A = 0.01

def calculate_Cd(Fd, rho, v, A):
  return (2 * Fd) / (rho * v**2 * A)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2020 18:23:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/cfd-forum/issues-calculating-cd-of-a-simple-cube-beginner/m-p/9546675#M5005</guid>
      <dc:creator>zifcani</dc:creator>
      <dc:date>2020-05-28T18:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: Issues calculating Cd of a simple cube (beginner)</title>
      <link>https://forums.autodesk.com/t5/cfd-forum/issues-calculating-cd-of-a-simple-cube-beginner/m-p/9546878#M5006</link>
      <description>&lt;P&gt;Thank you for sending the model.&lt;/P&gt;
&lt;P&gt;I applied symmetry boundary conditions around the air domain.&amp;nbsp; This resulted in a reaction force of 0.654N.&lt;/P&gt;
&lt;P&gt;Based on that, Cd comes out to 1.09 which is pretty close to the 1.05 number you are looking for.&lt;/P&gt;
&lt;P&gt;I'm attaching the cfz file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Marwan&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2020 19:40:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/cfd-forum/issues-calculating-cd-of-a-simple-cube-beginner/m-p/9546878#M5006</guid>
      <dc:creator>marwan_azzam</dc:creator>
      <dc:date>2020-05-28T19:40:45Z</dc:date>
    </item>
    <item>
      <title>Re: Issues calculating Cd of a simple cube (beginner)</title>
      <link>https://forums.autodesk.com/t5/cfd-forum/issues-calculating-cd-of-a-simple-cube-beginner/m-p/9547049#M5007</link>
      <description>&lt;P&gt;Thank you for the quick response.&lt;BR /&gt;I will download your project and play around with it but do you mind explaining why adding a symmetry boundary condition would make such a big difference, especially since my mesh is already perfectly symmetric? And what would happen if my mesh wasn't symmetric? Would I still be able to get correct results?&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2020 20:44:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/cfd-forum/issues-calculating-cd-of-a-simple-cube-beginner/m-p/9547049#M5007</guid>
      <dc:creator>zifcani</dc:creator>
      <dc:date>2020-05-28T20:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: Issues calculating Cd of a simple cube (beginner)</title>
      <link>https://forums.autodesk.com/t5/cfd-forum/issues-calculating-cd-of-a-simple-cube-beginner/m-p/9547606#M5008</link>
      <description>&lt;P&gt;I finally managed to open your project and I realized you were not referring to "mirror symmetry" but to a "Slip/Symmetry" boundary condition which makes a lot more sense. Do you mind explaining what this does exactly? Does it just make the walls of the tunnel frictionless? I also saw that some other things may be different so do you mind quickly explaining why you did those changes and what exactly do they mean?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 06:02:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/cfd-forum/issues-calculating-cd-of-a-simple-cube-beginner/m-p/9547606#M5008</guid>
      <dc:creator>zifcani</dc:creator>
      <dc:date>2020-05-29T06:02:08Z</dc:date>
    </item>
    <item>
      <title>Re: Issues calculating Cd of a simple cube (beginner)</title>
      <link>https://forums.autodesk.com/t5/cfd-forum/issues-calculating-cd-of-a-simple-cube-beginner/m-p/9548215#M5009</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You are right, Slip/Symmetry boundary conditions mean that the walls are frictionless and flow parallel to the walls is allowed.&amp;nbsp; This does not affect the mesh other than not creating a wall layer.&amp;nbsp; It makes the model behave as if there is a continuum to the air domain (it is larger than it actually is).&lt;/P&gt;
&lt;P&gt;That is the only change I recall making.&amp;nbsp; I'm not sure which other changes you refer to.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Marwan&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 11:27:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/cfd-forum/issues-calculating-cd-of-a-simple-cube-beginner/m-p/9548215#M5009</guid>
      <dc:creator>marwan_azzam</dc:creator>
      <dc:date>2020-05-29T11:27:07Z</dc:date>
    </item>
    <item>
      <title>Re: Issues calculating Cd of a simple cube (beginner)</title>
      <link>https://forums.autodesk.com/t5/cfd-forum/issues-calculating-cd-of-a-simple-cube-beginner/m-p/9549449#M5010</link>
      <description>&lt;P&gt;Ok, I see, thank you.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you just mind explaining how mesh sizing and element counts and stuff works (or link some resources)? Because mesh resolution certainly makes a big difference but I'm not sure how to adjust it properly and know how many elements I'd want for a good enough sim.&lt;/P&gt;&lt;P&gt;Also, I'm only getting the correct Z force of ~&lt;SPAN&gt;0.65 N on the bottom face (the one facing the flow), but there is also Z force (something like 0.2 N) on the top face and most tutorials tell me to use the sum of Z forces which would throw off Cd by a lot? Is that wrong and should I just be taking the force on the face(s) facing the flow into account?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 19:26:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/cfd-forum/issues-calculating-cd-of-a-simple-cube-beginner/m-p/9549449#M5010</guid>
      <dc:creator>zifcani</dc:creator>
      <dc:date>2020-05-29T19:26:17Z</dc:date>
    </item>
    <item>
      <title>Re: Issues calculating Cd of a simple cube (beginner)</title>
      <link>https://forums.autodesk.com/t5/cfd-forum/issues-calculating-cd-of-a-simple-cube-beginner/m-p/9549763#M5011</link>
      <description>&lt;P&gt;Just wanted to clarify the question from my last post&amp;nbsp;since I cannot edit it - I was trying to ask how to know if I have enough elements/mesh resolution to be confident that my results are actually correct because I usually won't have a reference to compare against.&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 22:23:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/cfd-forum/issues-calculating-cd-of-a-simple-cube-beginner/m-p/9549763#M5011</guid>
      <dc:creator>zifcani</dc:creator>
      <dc:date>2020-05-29T22:23:23Z</dc:date>
    </item>
  </channel>
</rss>

