<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel rdf:about="https://community.wolfram.com">
    <title>Community RSS Feed</title>
    <link>https://community.wolfram.com</link>
    <description>RSS Feed for Wolfram Community showing any discussions tagged with Aerospace Engineering sorted by active.</description>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3502450" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3135874" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2534173" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2484078" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2034161" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2026590" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2407750" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2415569" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2406638" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2123140" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2011420" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1920848" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1757394" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1206896" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1144481" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/996238" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/935929" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/820884" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/747008" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/746344" />
      </rdf:Seq>
    </items>
  </channel>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3502450">
    <title>[WSRP25] Visualizing orbital decay due to Earth&amp;#039;s oblate shape</title>
    <link>https://community.wolfram.com/groups/-/m/t/3502450</link>
    <description>![Visualizing orbital decay due to Earth&amp;#039;s oblate shape][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-07-10at5.28.11%E2%80%AFPM.png&amp;amp;userId=3500732&#xD;
  [2]: https://www.wolframcloud.com/obj/bba46b7e-4418-4806-abf2-b10d8b8594e9</description>
    <dc:creator>Alex Ning</dc:creator>
    <dc:date>2025-07-10T21:33:29Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3135874">
    <title>Wolfram Language as a design language for embedded, real-time software</title>
    <link>https://community.wolfram.com/groups/-/m/t/3135874</link>
    <description>![enter image description here][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Image20240306202014.jpg&amp;amp;userId=20103&#xD;
  [2]: https://www.wolframcloud.com/obj/80cb0022-4f48-468f-bf63-9d20b3313f28</description>
    <dc:creator>Brian Beckman</dc:creator>
    <dc:date>2024-03-06T00:56:49Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2534173">
    <title>Neumann Boundary Condition for thermal radiation between two bodies</title>
    <link>https://community.wolfram.com/groups/-/m/t/2534173</link>
    <description>Hi All,&#xD;
&#xD;
I&amp;#039;m trying to formulate and solve a pde which models thermal radiation between two bodies using a Neumann boundary condition.&#xD;
&#xD;
I&amp;#039;ve created a mesh and want to capture the thermal radiation heat transfer between element 106 and element 19 in the boundary mesh wireframe plot below.&#xD;
&#xD;
 ![enter image description here][1]&#xD;
&#xD;
I&amp;#039;ve modelled convective BCs as follows:&#xD;
&#xD;
    GconvPistComb = NeumannValue[hPistComb*(TPistHeat - temp[z, r]), ElementMarker == 106];&#xD;
    GconvBlkCool = NeumannValue[hCoolWater1*(TWater1 - temp[z, r]), ElementMarker == 75]&#xD;
&#xD;
The pde with just these included looks like:&#xD;
&#xD;
    pde = {1/r D[-kMesh r D[temp[z, r], r], r] + D[-kMesh D[temp[z, r], z], &#xD;
         z] == GconvPistComb + GconvBlkCool&#xD;
&#xD;
 If I were modelling the thermal radiation from ambient gas to element 19 I would use the following Neumann BC in which TAmb is a pre-defined fixed value:&#xD;
&#xD;
    GradAmbTest = &#xD;
          NeumannValue[Epsilon Sigma (TAmb - temp[z, r])^4, &#xD;
           ElementMarker == 19];&#xD;
&#xD;
   &#xD;
&#xD;
How can I replace TAmb with an expression that represents the solved temperature field for Element 106?&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=MathematicaThermalRadiationQuestion.png&amp;amp;userId=1933607</description>
    <dc:creator>Archie Watts-Farmer</dc:creator>
    <dc:date>2022-05-18T18:11:52Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2484078">
    <title>Controlling a quadcopter drone&amp;#039;s altitude with a tracking controller</title>
    <link>https://community.wolfram.com/groups/-/m/t/2484078</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/8e00e8e9-5eba-4f6b-8137-051ffacc8a96</description>
    <dc:creator>Maher Kuzbari</dc:creator>
    <dc:date>2022-03-03T15:56:19Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2034161">
    <title>[WSC20] Simulating satellite collisions</title>
    <link>https://community.wolfram.com/groups/-/m/t/2034161</link>
    <description>![Wolfram Notebook][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=IMG-2156.PNG&amp;amp;userId=2033168&#xD;
  [2]: https://www.wolframcloud.com/obj/17bd27a8-c2ca-426d-b5b9-af563c71c6d5</description>
    <dc:creator>Anna Krzyzanska</dc:creator>
    <dc:date>2020-07-15T20:05:36Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2026590">
    <title>[WSS20] Integrating SPICE into Mathematica: C style</title>
    <link>https://community.wolfram.com/groups/-/m/t/2026590</link>
    <description>![Cassini-Huygens Probe (Artist Interpretation)][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=27159.jpg&amp;amp;userId=2026549&#xD;
  [2]: https://www.wolframcloud.com/obj/8fd0b919-bd56-4356-9059-d3c7f01e88ee</description>
    <dc:creator>Pranav Sai</dc:creator>
    <dc:date>2020-07-14T01:30:43Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2407750">
    <title>Explorations in aircraft stability augmented systems: a RL approach</title>
    <link>https://community.wolfram.com/groups/-/m/t/2407750</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/685f303e-62bd-40a8-a0bd-5ed0786e5ba1</description>
    <dc:creator>Saulo da Paz Almeida</dc:creator>
    <dc:date>2021-11-16T03:03:40Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2415569">
    <title>Gravitational force simulation resources?</title>
    <link>https://community.wolfram.com/groups/-/m/t/2415569</link>
    <description>Hello,&#xD;
I am relatively new to Wolfram. After searching appropriate solutions I want to focus here for a project of gravitational force testing. There are so many opportunities and diversity of application here.&#xD;
&#xD;
Defined by [Skylark Micro][1] rocket technology of testing facilities in reality.&#xD;
The purpose is to create pre-test conditions, which will be able to input materials, 3D construction and put it to a certain simulation load.&#xD;
&#xD;
For any guidance, from where to start thank you in advance.&#xD;
&#xD;
&#xD;
  [1]: https://www.skyrora.com/skylark-micro</description>
    <dc:creator>Lariliss Liss</dc:creator>
    <dc:date>2021-11-30T10:31:44Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2406638">
    <title>Enhancing aircraft handling with stability augmentation using LQR</title>
    <link>https://community.wolfram.com/groups/-/m/t/2406638</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/3f8cce09-cf45-450e-a27f-41eab038dac5&#xD;
&#xD;
&#xD;
&#xD;
  [Original NB]: https://www.wolframcloud.com/obj/177f4cd5-e401-4b1f-84ba-905244d26dae</description>
    <dc:creator>Maher Kuzbari</dc:creator>
    <dc:date>2021-11-14T12:38:52Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2123140">
    <title>StandardAtmosphere Package: Definition of ‘ThermalConductivityCoefficient’</title>
    <link>https://community.wolfram.com/groups/-/m/t/2123140</link>
    <description>Dear Wolfram community,&#xD;
&#xD;
a question on the definition of the quantity ‘ThermalConductivityCoefficient’ in the StandardAtmosphere Package:&#xD;
&#xD;
Provided that ‘ThermalConductivityCoefficient’ stands for the thermal conductivity lam  acc. to Fourier’s law of heat conduction&#xD;
&#xD;
q = -lam grad(T),&#xD;
&#xD;
then lam should be in the order of 0.025 W/(m K) for ambient air.&#xD;
&#xD;
However, the command in the attached file yields a value of&#xD;
&#xD;
0.000025362 J / (m s K) for condition at sea level (0 Meters).&#xD;
&#xD;
This seems to be too low by an order of 3 magnitudes.&#xD;
&#xD;
Is this quantity based on a different definition, other than assumed above ?&#xD;
&#xD;
I am using Version 11.3.0.0.</description>
    <dc:creator>ludwig.eineder</dc:creator>
    <dc:date>2020-11-25T12:26:27Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2011420">
    <title>Modeling Spacecraft Rendezvous and Proximity Operations</title>
    <link>https://community.wolfram.com/groups/-/m/t/2011420</link>
    <description>Has anyone in Wolfram-Land ever modeled and/or calculated the necessary parameters for spacecraft rendezvous and proximity operations?</description>
    <dc:creator>Paul Huter</dc:creator>
    <dc:date>2020-06-23T16:49:01Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1920848">
    <title>Asymptote- vertical and diagonal</title>
    <link>https://community.wolfram.com/groups/-/m/t/1920848</link>
    <description>I would like to calculate the vertical and diagonal asymptote f (x) = (x ^ 2 + x + 3) / (x-1). Will somebody help?</description>
    <dc:creator>Mateusz Janicki</dc:creator>
    <dc:date>2020-04-04T13:48:47Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1757394">
    <title>How to write a time efficient user-defined function with local variables?</title>
    <link>https://community.wolfram.com/groups/-/m/t/1757394</link>
    <description>I want to write a &amp;#039;Gauss&amp;#039; function in my main  program like the way its written in Matlab. In the following example I want to pass the variables (&amp;#039;aar&amp;#039; &amp;amp; &amp;#039;es&amp;#039; are matrices and other are scalars) &amp;#034;aar, es, x1value, x2value, x3value, x4value, y1value, y2value, y3value, y4value&amp;#034; like given below. I want the output to store in detjacobs &amp;amp; Invdetjacobs. Kindly suggest me the correct way.&#xD;
&#xD;
 &#xD;
&#xD;
&#xD;
&#xD;
&#xD;
    [detjacobs, Invdetjacobs] = Gauss[aar, es, x1value, x2value, x3value, x4value, y1value, y2value, y3value, y4value]&#xD;
&#xD;
&#xD;
    Do[&#xD;
    Do[&#xD;
    r = aar[[i]]; s = es[[j]];&#xD;
  &#xD;
  				shape1 = ((1. - r) (1. - s))/4.;&#xD;
  				shape2 = ((1. + r) (1. - s))/4.; &#xD;
                shape3 = ((1. + r) (1. + s))/4.; &#xD;
                shape4 = ((1. - r) (1. + s))/4.;&#xD;
                                          dhdr1 = 1./4. (-1. + s); &#xD;
                                          dhdr2 = (1. - s)/4.;&#xD;
                                          dhdr3 = 1./4. (1. + s); &#xD;
                                          dhdr4 = -(1. + s)/4.;&#xD;
  	                             dhds1 = 1./4. (-1. + r); &#xD;
                                 dhds2 = 1./4. (-1. - r); &#xD;
                                 dhds3 = (1. + r)/4.; &#xD;
                                 dhds4 = (1. - r)/4.;&#xD;
            &#xD;
     detjacobs = {{dhdr1 x1value + dhdr2 x2value + dhdr3 x3value + &#xD;
      dhdr4 x4value, &#xD;
     dhdr1 y1value + dhdr2 y2value + dhdr3 y3value + &#xD;
      dhdr4 y4value}, {dhds1 x1value + dhds2 x2value + dhds3 x3value +&#xD;
       dhds4 x4value, &#xD;
     dhds1 y1value + dhds2 y2value + dhds3 y3value + dhds4 y4value}};&#xD;
&#xD;
    Invdetjacobs = 1/detjacobs;&#xD;
&#xD;
    ,{j,1,4}];&#xD;
&#xD;
    ,{i,1,4}];</description>
    <dc:creator>khaja moinuddin mohammed</dc:creator>
    <dc:date>2019-08-09T11:59:47Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1206896">
    <title>[?] Rotate a 3D Object?</title>
    <link>https://community.wolfram.com/groups/-/m/t/1206896</link>
    <description>I want to rotate earth about z axis  but it gives me error that object is not 3d Graphics&#xD;
![ ][1]&#xD;
&#xD;
&#xD;
![enter image description here][2]&#xD;
&#xD;
&#xD;
  [1]: http://community.wolfram.com//c/portal/getImageAttachment?filename=2.PNG&amp;amp;userId=1199219&#xD;
  [2]: http://community.wolfram.com//c/portal/getImageAttachment?filename=8488Capture.PNG&amp;amp;userId=1199219</description>
    <dc:creator>mohameddonia2222</dc:creator>
    <dc:date>2017-10-23T02:25:54Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1144481">
    <title>[WSC17] Shortest plane route with elevation ceiling</title>
    <link>https://community.wolfram.com/groups/-/m/t/1144481</link>
    <description>![enter image description here][1]&#xD;
&#xD;
Every aircraft has an elevation ceiling, which is the maximum height at which it can fly. Although most aircraft have an elevation ceiling high enough that their travel paths are not affected by geographical features, some, such as drones, fly low enough that they need to look out for mountains and other elevations. This project developed a microsite which takes two geographical locations and an elevation ceiling as input, and then outputs a map with an approximation of the shortest route around any mountains that may be in the way.&#xD;
&#xD;
Suppose we want the shortest path from LA to NYC with a ceiling of 7000 ft:&#xD;
&#xD;
    loc1 = Entity[&amp;#034;City&amp;#034;, {&amp;#034;LosAngeles&amp;#034;, &amp;#034;California&amp;#034;, &amp;#034;UnitedStates&amp;#034;}][&amp;#034;Coordinates&amp;#034;];&#xD;
    loc2 = Entity[&amp;#034;City&amp;#034;, {&amp;#034;NewYork&amp;#034;, &amp;#034;NewYork&amp;#034;, &amp;#034;UnitedStates&amp;#034;}][&amp;#034;Coordinates&amp;#034;];&#xD;
    ceiling = 7000;&#xD;
&#xD;
The program first creates a &amp;#034;box&amp;#034; with the two locations at opposite corners. We then create an array of the flyable area using [`GeoElevationData`](http://reference.wolfram.com/language/ref/GeoElevationData.html?q=GeoElevationData) and our ceiling as a threshold: &#xD;
&#xD;
    elevation[x1_, y1_, x2_, y2_, ceiling_] := &#xD;
     UnitStep[QuantityMagnitude[&#xD;
        GeoElevationData[{{x1, y1}, {x2, y2}}, GeoZoomLevel -&amp;gt; 3, &#xD;
         UnitSystem -&amp;gt; &amp;#034;Imperial&amp;#034;]] - ceiling]&#xD;
&#xD;
    m = elevation[loc1[[1]], loc1[[2]], loc2[[1]], loc2[[2]], ceiling];&#xD;
&#xD;
    {w, l} = Dimensions[m];&#xD;
&#xD;
From this, a network is created by connecting &amp;#039;neighboring&amp;#039; points in our flyable area. We do this by starting out with a [`GridGraph`](http://reference.wolfram.com/language/ref/GridGraph.html), connect diagonally adjacent vertices, and then delete the invalid ones:&#xD;
&#xD;
    coordTrans[w_, l_, m_] := &#xD;
     Sort[(#2 - 1) w + w - #1 + 1 &amp;amp; @@@ Position[m, 1]]&#xD;
&#xD;
    remove = coordTrans[w, l, m];&#xD;
&#xD;
    networkCreate[w_, l_, g_] := &#xD;
     EdgeAdd[g, &#xD;
      Join[Table[&#xD;
        If[Mod[n, w] == 1, Nothing, UndirectedEdge[n, n + w - 1]], {n, 1, &#xD;
         w (l - 1)}], &#xD;
       DeleteCases[&#xD;
        Table[UndirectedEdge[n, n + w + 1], {n, 1, w (l - 1) - 1}], &#xD;
        Alternatives @@ &#xD;
         Table[UndirectedEdge[n, n + w + 1], {n, w , w (l - 2), w}]]]]&#xD;
&#xD;
    network = networkCreate[w, l, GridGraph[{w, l}]];&#xD;
&#xD;
    flyable = &#xD;
     Subgraph[network, Complement[Range[l w], remove], &#xD;
      VertexCoordinates -&amp;gt; &#xD;
       AbsoluteOptions[network, VertexCoordinates][[1, 2, &#xD;
        Complement[Range[l w], remove]]], ImageSize -&amp;gt; 1200]&#xD;
&#xD;
![enter image description here][2]&#xD;
&#xD;
We then add edge weights and find the shortest path from the bottom left corner to the upper right corner:&#xD;
&#xD;
    networkWeighting[UndirectedEdge[v1_, v2_]] := &#xD;
     If[Abs[v2 - v1] == 1 || Abs[v2 - v1] == w, 1, Sqrt[2]]&#xD;
    &#xD;
    weights = networkWeighting /@ EdgeList[flyable];&#xD;
    &#xD;
    flyable = Graph[EdgeList[flyable], EdgeWeight -&amp;gt; weights];&#xD;
    &#xD;
    p = FindShortestPath[flyable, 1, l w];&#xD;
    &#xD;
Viola! Here&amp;#039;s our path:&#xD;
    &#xD;
    coordTransBack[p_, w_, &#xD;
      l_] := {Ceiling[#/w], l - ((Ceiling[#/w] - 1) w + l - #)} &amp;amp; /@ p&#xD;
    &#xD;
    pathCoords = coordTransBack[p, w, l];&#xD;
    &#xD;
    Graphics[{Red, Line[pathCoords]}]&#xD;
&#xD;
![enter image description here][3]&#xD;
&#xD;
Let&amp;#039;s look at this atop a map:&#xD;
&#xD;
    geoPathCoords[loc1_, loc2_, w_, l_, &#xD;
      pathCoords_] := {(#2 - 1) (loc2[[1]] - loc1[[1]])/w + &#xD;
         loc1[[1]], (#1 - 1) (loc2[[2]] - loc1[[2]])/l + loc1[[2]]} &amp;amp; @@@ &#xD;
      pathCoords&#xD;
    &#xD;
    geoPath = geoPathCoords[loc1, loc2, w, l, pathCoords];&#xD;
    &#xD;
    GeoGraphics[{Thick, Red, GeoPath[geoPath]}]&#xD;
&#xD;
![enter image description here][4]&#xD;
&#xD;
There&amp;#039;s a clear problem here. Once we&amp;#039;re past the Rocky Mountains, we should be taking the greater circle path to our destination. Clearly we&amp;#039;re not doing this here - this is because we were working with a discrete set of points over lat-lon space. To fix this, we can take a greedy approach and merge 2 consecutive line segments when the merge avoids the invalid regions. To do this, we express our invalid area and path as regions and use [`RegionDisjoint`](http://reference.wolfram.com/language/ref/RegionDisjoint.html):&#xD;
&#xD;
    bad = ImageMesh[Image[m], Method -&amp;gt; &amp;#034;Exact&amp;#034;, &#xD;
       DataRange -&amp;gt; Reverse[Sort /@ Transpose[{loc1, loc2}]]];&#xD;
    &#xD;
    linePoints[p1_, p2_] := Table[(1 - t) p1 + t p2, {t, 0, 1, 0.1`}]&#xD;
    &#xD;
    checkDisjoint[bad_, geoPath_, i_, j_] := &#xD;
     RegionDisjoint[bad, &#xD;
      Line[Reverse /@ linePoints[geoPath[[i]], geoPath[[j]]]]]&#xD;
    &#xD;
    i = 0;&#xD;
    j = 1;&#xD;
    pathFinal = {};&#xD;
    While[i &amp;lt; Length[geoPath],&#xD;
     While[checkDisjoint[bad, geoPath, i, j] &amp;amp;&amp;amp; j &amp;lt; Length[geoPath],&#xD;
      j++];&#xD;
     AppendTo[pathFinal, geoPath[[j]]];&#xD;
     i = j;&#xD;
     j = i + 1;&#xD;
     ]&#xD;
&#xD;
The new path:&#xD;
&#xD;
    GeoGraphics[{Thick, Red, GeoPath[pathFinal]}]&#xD;
&#xD;
![enter image description here][5]&#xD;
&#xD;
Much better!&#xD;
&#xD;
A potential issue is that our solution &amp;#039;hugs&amp;#039; the mountains too much. In the real world, this would be too dangerous. A way around this is to pad our invalid region array, say using [`Dilation`](http://reference.wolfram.com/language/ref/Dilation.html), before we build our connectivity network.&#xD;
&#xD;
This algorithm produces a good approximation of the shortest route. However, it fails when our network is disconnected, even though there could be a potential path that goes outside the box. A further continuation of this project could be done to create larger boxes to look through.&#xD;
&#xD;
&#xD;
  [1]: http://community.wolfram.com//c/portal/getImageAttachment?filename=path.png&amp;amp;userId=883509&#xD;
  [2]: http://community.wolfram.com//c/portal/getImageAttachment?filename=network.png&amp;amp;userId=883509&#xD;
  [3]: http://community.wolfram.com//c/portal/getImageAttachment?filename=4234AdamCommunityPost.png&amp;amp;userId=883509&#xD;
  [4]: http://community.wolfram.com//c/portal/getImageAttachment?filename=6960AdamCommunityPost.png&amp;amp;userId=883509&#xD;
  [5]: http://community.wolfram.com//c/portal/getImageAttachment?filename=9170AdamCommunityPost.png&amp;amp;userId=883509</description>
    <dc:creator>Adam Czarnecki</dc:creator>
    <dc:date>2017-07-11T15:27:41Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/996238">
    <title>How suitable is Mathematica for a Space Elevator simulation</title>
    <link>https://community.wolfram.com/groups/-/m/t/996238</link>
    <description>A group of us at the International [Space Elevator Consortium (ISEC)][1] are designing a comprehensive simulation suite for the space elevator. We are trying to select a software base, and Mathematica is one of the choices. The spreadsheet shows several others. I have been using Mathematica for a few months and have filled in my scores on a scale of 1 to 10 against a list of features that we need. 1 means a lot of work is needed; 10 means its all there already.&#xD;
We would really like other users or Mathematica staff to put their own opinions in a copy of the spreadsheet. Its OK to write in brief verbal comments or references rather than just numbers if that helps.&#xD;
&#xD;
&#xD;
  [1]: http://www.isec.org/</description>
    <dc:creator>John Knapman</dc:creator>
    <dc:date>2017-01-16T12:54:26Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/935929">
    <title>NASA to use Wolfram|Alpha API to offer more data on Science Website</title>
    <link>https://community.wolfram.com/groups/-/m/t/935929</link>
    <description>NASAs Science website is a premier location for space and science cutting-edge information. The National Aeronautics and Space Administration recently chose Wolfram|Alpha to utilize the ever-growing knowledgebase for use on their Science website.  NASA will use the Wolfram|Alpha API to apply this knowledge engine and offer more real-time information and data. NASA made this selection to more ably apply W|As natural language search abilities to enhance the user experience.</description>
    <dc:creator>Brittany Banks</dc:creator>
    <dc:date>2016-10-07T15:54:58Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/820884">
    <title>Updated SystemModeler Examples Website</title>
    <link>https://community.wolfram.com/groups/-/m/t/820884</link>
    <description>We&amp;#039;ve done a major update to the SystemModeler Examples that you can find on [www.wolfram.com/system-modeler/examples][1]. We now have two major categories: Industry Examples and Education Examples. &#xD;
![enter image description here][2]&#xD;
&#xD;
When you click on one of the topics, say [Mechanical Engineering][3], you get to a page dedicated to that topic:&#xD;
&#xD;
![Mechanical Engineering Domain][4]&#xD;
&#xD;
For pages with educational materials there are difficulty legends to guide you. There are of course examples that are suitable for more than one level.&#xD;
&#xD;
When you click through to an example, you get to the individual example page, where you can read about the example, see videos, interact with CDF dynamic content, or download the full model. The full model can also contain a Mathematica notebook with analysis and design material. &#xD;
&#xD;
![Individual example page][5]&#xD;
&#xD;
When you find an example that you want to share on social media, there are new share buttons to make that easy.&#xD;
&#xD;
I hope you like the new pages and take a minute to browse through the examples!&#xD;
&#xD;
&#xD;
  [1]: http://www.wolfram.com/system-modeler/examples/&#xD;
  [2]: http://community.wolfram.com//c/portal/getImageAttachment?filename=8188WC_ExamplesUpdate.png&amp;amp;userId=18621&#xD;
  [3]: http://www.wolfram.com/system-modeler/examples/mechanical-engineering/&#xD;
  [4]: http://community.wolfram.com//c/portal/getImageAttachment?filename=WC_ExamplesUpdate.png&amp;amp;userId=18621&#xD;
  [5]: http://community.wolfram.com//c/portal/getImageAttachment?filename=img3.png&amp;amp;userId=18621</description>
    <dc:creator>Johan Rhodin</dc:creator>
    <dc:date>2016-03-10T23:40:19Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/747008">
    <title>Simple 2D Fluid dynamics pipe flow model.</title>
    <link>https://community.wolfram.com/groups/-/m/t/747008</link>
    <description>I am trying to visualise contours for a simple pipe flow, I can&amp;#039;t seem to find a notebook online.&#xD;
I want to write a little about the capabilities of mathematica for computational fluid dynamics as part of my masters thesis.&#xD;
&#xD;
I tried importing the code in the following documentation for the simple fluid flow at the bottom of the page, however it seems to bring errors. &#xD;
http://reference.wolfram.com/language/FEMDocumentation/tutorial/SolvingPDEwithFEM.html&#xD;
&#xD;
the pipe only needs to be a simple rectangle with an inlet on the left and outlet on the right.&#xD;
&#xD;
Can anyone point me in the right direction?&#xD;
&#xD;
Thank you for your time.</description>
    <dc:creator>Ahmed Hagi</dc:creator>
    <dc:date>2015-11-29T10:27:19Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/746344">
    <title>How to solve an underdetermined system in Mathematica</title>
    <link>https://community.wolfram.com/groups/-/m/t/746344</link>
    <description>Hi guys , I have a Mathematica code that i wrote to find the natural frequencies of a triangular plate. The problem that i am facing is when i increase the number of terms above 9, i get an underdetermined system of linear equations. &#xD;
&#xD;
Any idea how to solve this problem&#xD;
I have attached my code below &#xD;
&#xD;
Thank you very much in advance&#xD;
Peter</description>
    <dc:creator>peter azizi</dc:creator>
    <dc:date>2015-11-27T21:48:53Z</dc:date>
  </item>
</rdf:RDF>

