<?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: Prepare the contour stress plot in Mathcad</title>
    <link>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046541#M219872</link>
    <description>&lt;P&gt;I'll try to add my worksheet - let's see if it works for me.&lt;/P&gt;
&lt;P&gt;I added a 3D plot,&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Werner_E_0-1765030815405.png" style="width: 400px;"&gt;&lt;img src="https://www.ptcusercommunity.com/t5/image/serverpage/image-id/132069i5FE394616FF9C01B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Werner_E_0-1765030815405.png" alt="Werner_E_0-1765030815405.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;but it doesn't look good in Prime compared to real Mathcad. Here mathcad 15&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Werner_E_1-1765030848852.png" style="width: 999px;"&gt;&lt;img src="https://www.ptcusercommunity.com/t5/image/serverpage/image-id/132070iE63BD97DC36DA8E4/image-size/large?v=v2&amp;amp;px=999" role="button" title="Werner_E_1-1765030848852.png" alt="Werner_E_1-1765030848852.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 08 Dec 2025 13:30:16 GMT</pubDate>
    <dc:creator>Werner_E</dc:creator>
    <dc:date>2025-12-08T13:30:16Z</dc:date>
    <item>
      <title>Prepare the contour stress plot</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046522#M219861</link>
      <description>&lt;P&gt;Create the contour plot in mathcad prime version 11&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;/ API 650 TANK NOZZLE ANALYSIS WITH 30mm PAD
// Mathcad Prime Worksheet
// Date: 2024

// ============================================
// 1. INPUT PARAMETERS
// ============================================

// Tank Geometry
D_tank ≔ 80.0
R_tank ≔ (D_tank ⋅ 1000)/2

// Shell and Pad
t_shell ≔ 30
t_pad ≔ 30
t_total ≔ t_shell + t_pad

// Nozzle
DN ≔ 24
D_nozzle ≔ 610
d_nozzle ≔ 584.6
r_nozzle ≔ (D_nozzle + d_nozzle)/4

// Material Properties
S_shell ≔ 163
S_nozzle ≔ 118

// Loads
F_axial ≔ 15000
Mx ≔ 300000 ⋅ 1000
My ≔ 300000 ⋅ 1000

// Pressure
P_total ≔ 0.1602

// ============================================
// 2. BASIC STRESS CALCULATIONS
// ============================================

// Membrane stress with pad
σ_mem_pad ≔ (P_total ⋅ R_tank)/(2 ⋅ t_total)

// Original membrane stress (for comparison)
σ_mem_original ≔ (P_total ⋅ R_tank)/(2 ⋅ t_shell)

// Stress reduction percentage
stress_reduction ≔ ((σ_mem_original - σ_mem_pad)/σ_mem_original) ⋅ 100

// Display results
"BASIC STRESS RESULTS WITH 30mm PAD" = 
"
Shell thickness: " t_shell " mm
Pad thickness: " t_pad " mm
Total thickness: " t_total " mm
Membrane stress (original): " σ_mem_original " MPa
Membrane stress (with pad): " σ_mem_pad " MPa
Stress reduction: " stress_reduction " %
"

// ============================================
// 3. SCL PLOT DATA
// ============================================

// Stress components with pad
σ_membrane ≔ 42.65
σ_bending ≔ 28.65

// Create normalized thickness array
s ≔ 0, 0.05‥1.0
N_points ≔ length(s)

// X-axis: Distance from ID
x_distance ≔ s ⋅ t_total

// Y-axis: Stress distribution
y_stress ≔ σ_membrane + (2⋅s - 1) ⋅ σ_bending

// Allowable stress lines
S_m_allow ≔ 118
S_L_allow ≔ 177
S_Pb_allow ≔ 177

y_Pm ≔ matrix(N_points, 1, S_m_allow)
y_PL ≔ matrix(N_points, 1, S_L_allow)
y_PLPb ≔ matrix(N_points, 1, S_Pb_allow)

// ============================================
// 4. CREATE SCL PLOT
// ============================================

// IN MATHCAD PRIME:
// 1. Insert → Graph → XY Plot
// 2. In the placeholder, type:
//    x_distance, y_stress, y_Pm, y_PL, y_PLPb
// 3. Format as needed

// ============================================
// 5. CONTOUR PLOT DATA
// ============================================

// Create coordinate grid
grid_size ≔ 20
X ≔ matrix(grid_size, grid_size, 0)
Y ≔ matrix(grid_size, grid_size, 0)
Z ≔ matrix(grid_size, grid_size, 0)

// Fill the grid
for i ∈ 0‥grid_size-1
    for j ∈ 0‥grid_size-1
        // Coordinates from -200 to 200 mm
        x_val ≔ -200 + 400⋅(i/(grid_size-1))
        y_val ≔ -200 + 400⋅(j/(grid_size-1))
        
        X[i,j] ≔ x_val
        Y[i,j] ≔ y_val
        
        // Stress calculation
        r ≔ sqrt(x_val^2 + y_val^2 + 0.001)
        Z[i,j] ≔ σ_membrane⋅exp(-r/150) + σ_bending⋅(x_val/200)⋅exp(-r/180)

// Display contour data info
"CONTOUR PLOT DATA" = 
"
Grid size: " grid_size " × " grid_size "
X range: -200 to 200 mm
Y range: -200 to 200 mm
Stress range: " min(Z) " to " max(Z) " MPa
"

// ============================================
// 6. CREATE CONTOUR PLOT
// ============================================

// IN MATHCAD PRIME:
// 1. Insert → Graph → Contour Plot
// 2. In the placeholder, type:
//    X, Y, Z
// 3. Format:
//    - Contour levels: 10, 20, 30, 40, 50, 60, 70
//    - Color map: Thermal
//    - Title: "Stress Contour - With 30mm Pad"&lt;/PRE&gt;</description>
      <pubDate>Sat, 06 Dec 2025 05:50:16 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046522#M219861</guid>
      <dc:creator>ranto</dc:creator>
      <dc:date>2025-12-06T05:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: Prepare the contour stress plot</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046523#M219862</link>
      <description>&lt;P&gt;Prepare the contour plot for the below in mathcad - I am getting errors while preparing&lt;/P&gt;&lt;PRE&gt;5. CONTOUR PLOT DATA
// ============================================

// Create coordinate grid
grid_size ≔ 20
X ≔ matrix(grid_size, grid_size, 0)
Y ≔ matrix(grid_size, grid_size, 0)
Z ≔ matrix(grid_size, grid_size, 0)

// Fill the grid
for i ∈ 0‥grid_size-1
    for j ∈ 0‥grid_size-1
        // Coordinates from -200 to 200 mm
        x_val ≔ -200 + 400⋅(i/(grid_size-1))
        y_val ≔ -200 + 400⋅(j/(grid_size-1))
        
        X[i,j] ≔ x_val
        Y[i,j] ≔ y_val
        
        // Stress calculation
        r ≔ sqrt(x_val^2 + y_val^2 + 0.001)
        Z[i,j] ≔ σ_membrane⋅exp(-r/150) + σ_bending⋅(x_val/200)⋅exp(-r/180)

// Display contour data info
"CONTOUR PLOT DATA" = 
"
Grid size: " grid_size " × " grid_size "
X range: -200 to 200 mm
Y range: -200 to 200 mm
Stress range: " min(Z) " to " max(Z) " MPa
"

// ============================================
// 6. CREATE CONTOUR PLOT
// ============================================

// IN MATHCAD PRIME:
// 1. Insert → Graph → Contour Plot
// 2. In the placeholder, type:
//    X, Y, Z
// 3. Format:
//    - Contour levels: 10, 20, 30, 40, 50, 60, 70
//    - Color map: Thermal
//    - Title: "Stress Contour - With 30mm Pad"&lt;/PRE&gt;</description>
      <pubDate>Sat, 06 Dec 2025 06:20:31 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046523#M219862</guid>
      <dc:creator>ranto</dc:creator>
      <dc:date>2025-12-06T06:20:31Z</dc:date>
    </item>
    <item>
      <title>Re: Prepare the contour stress plot</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046526#M219863</link>
      <description>&lt;P&gt;What you show is not the content of a Prime sheet - maybe an AI generated text?&amp;nbsp;Why do you expect it to work OK in Prime?&lt;/P&gt;
&lt;P&gt;And where is your Prime sheet showing what you tried to do and&amp;nbsp; which errors you get.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just two examples of wrong syntax:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;// Create normalized thickness array
s ≔ 0, 0.05‥1.0
N_points ≔ length(s)&lt;/LI-CODE&gt;
&lt;P&gt;Can't work. If you do it that way, "s" would be a range, not an array.&lt;BR /&gt;You could create a vector using &lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;s:=vec(0,0.05,1)&lt;/STRONG&gt;&lt;/FONT&gt; and to get the number of elements in this vector you could use&amp;nbsp; &amp;nbsp;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;N_points:=rows(s)&lt;/STRONG&gt;&lt;/FONT&gt;&amp;nbsp; &amp;nbsp;but the suggested&amp;nbsp; &amp;nbsp;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;N_points:=length(s)&lt;/STRONG&gt;&lt;/FONT&gt;&amp;nbsp; &amp;nbsp;would work equally well once s is created a vector and not as a range.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;S_m_allow ≔ 118
S_L_allow ≔ 177
S_Pb_allow ≔ 177

y_Pm ≔ matrix(N_points, 1, S_m_allow)&lt;/LI-CODE&gt;
&lt;P&gt;Wrong syntax! The third argument of the "matrix" function must be a function in two arguments (representing the zero based matrix indices) and not a constant scalar as shown, You may use&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Werner_E_0-1765013794398.png" style="width: 400px;"&gt;&lt;img src="https://www.ptcusercommunity.com/t5/image/serverpage/image-id/132065iEE5459CB65C1629D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Werner_E_0-1765013794398.png" alt="Werner_E_0-1765013794398.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As you say you experience problems implementing step 5, contour plot, I have to assume that you managed to implement steps 1 to 4 successfully. But the examples of wrong syntax which I showed above stem from step 3 and the variables created there are used to create the plot in step 4. So can we assume that you already have fixed the errors mentioned!?&lt;/P&gt;
&lt;P&gt;Maybe you have troubles with another error in step 5 of this AI stuff:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;        X[i,j] ≔ x_val
        Y[i,j] ≔ y_val&lt;/LI-CODE&gt;
&lt;P&gt;These assignments can't work. This is not how matrix elements are addressed!&lt;BR /&gt;In Prime you have to use matrix indices (not the literal subscripts !) when you assign values -&amp;nbsp; like&amp;nbsp; &lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;&amp;nbsp;X&lt;SUB&gt;i,j&lt;/SUB&gt;:=x_val&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suggest that you come back here and attach the worksheet showing what you have done so far and which error(s) in implementing step 5 you experience.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BTW, when you ask questions here you are supposed to close the threads when you got your answer or to follow up if you didn't.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.ptc.com/t5/Mathcad/how-to-do-the-goal-seek-in-mathcad-prime-3-1/m-p/846342/highlight/true#M204331" target="_blank" rel="noopener"&gt;how to do the goal seek in mathcad prime 3.1 - PTC Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.ptc.com/t5/Mathcad/Re-How-to-ignore-if-the-expression-is-divided-by-zero/m-p/815453/highlight/true#M202297" target="_blank" rel="noopener"&gt;Re: How to ignore if the expression is divided b... - PTC Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.ptc.com/t5/Mathcad/his-expression-is-giving-divide-by-zero-error-guide-me-for-the/m-p/815465/highlight/true#M202318" target="_blank" rel="noopener"&gt;his expression is giving divide by zero error - gu... - PTC Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.ptc.com/t5/Mathcad/How-to-Prepare-Logarithmic-graph-as-per-the-attachment/m-p/651847/highlight/true#M188946" target="_blank" rel="noopener"&gt;How to Prepare Logarithmic graph as per the attach... - PTC Community&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Dec 2025 10:13:39 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046526#M219863</guid>
      <dc:creator>Werner_E</dc:creator>
      <dc:date>2025-12-06T10:13:39Z</dc:date>
    </item>
    <item>
      <title>Re: Prepare the contour stress plot</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046528#M219864</link>
      <description>&lt;P&gt;Please check the uploaded file, you are correct, i had prepared the calculation based on DeepSeek ai only.&lt;/P&gt;&lt;P&gt;However, i need to prepare the stress contour plot in the attached mathcad file&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had got error while prepare the calculations, Hence please guide me to prepare the stress contour plot.&lt;/P&gt;</description>
      <pubDate>Sat, 06 Dec 2025 11:44:11 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046528#M219864</guid>
      <dc:creator>ranto</dc:creator>
      <dc:date>2025-12-06T11:44:11Z</dc:date>
    </item>
    <item>
      <title>Re: Prepare the contour stress plot</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046531#M219865</link>
      <description>&lt;P&gt;Unfortunately the file can't be opened because the Virus scan seems to run forever (its now already half an hour after you posted the file).&lt;BR /&gt;You posted at 12:44 and now its already 13:17 (my local time). An automatic virus scan sure can't take that much time.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Werner_E_1-1765023539929.png" style="width: 726px;"&gt;&lt;img src="https://www.ptcusercommunity.com/t5/image/serverpage/image-id/132067i65D700009C67B297/image-dimensions/726x254?v=v2" width="726" height="254" role="button" title="Werner_E_1-1765023539929.png" alt="Werner_E_1-1765023539929.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe you can try to post the file again, maybe a&amp;nbsp;&lt;a href="https://www.ptcusercommunity.com/t5/user/viewprofilepage/user-id/272431"&gt;@PTCModerator&lt;/a&gt;&amp;nbsp; can help fixing this problem.&lt;/P&gt;</description>
      <pubDate>Sat, 06 Dec 2025 12:19:16 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046531#M219865</guid>
      <dc:creator>Werner_E</dc:creator>
      <dc:date>2025-12-06T12:19:16Z</dc:date>
    </item>
    <item>
      <title>Re: Prepare the contour stress plot</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046532#M219866</link>
      <description>&lt;P&gt;please find attached the file&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Dec 2025 12:20:58 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046532#M219866</guid>
      <dc:creator>ranto</dc:creator>
      <dc:date>2025-12-06T12:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: Prepare the contour stress plot</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046533#M219867</link>
      <description>&lt;P&gt;Unfortunately the same effect. I guess that you also see the message "(Virus scan in progress ...)", don't you?&lt;/P&gt;
&lt;P&gt;I guess it won't help if you zip the file and post the archive.&lt;/P&gt;
&lt;P&gt;So it looks that we have to wait for a&amp;nbsp;&lt;a href="https://www.ptcusercommunity.com/t5/user/viewprofilepage/user-id/290340"&gt;@PTCModerator2&lt;/a&gt;&amp;nbsp; to help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Until then, you could use the time to close your open threads. &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Dec 2025 12:33:36 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046533#M219867</guid>
      <dc:creator>Werner_E</dc:creator>
      <dc:date>2025-12-06T12:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: Prepare the contour stress plot</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046534#M219868</link>
      <description>&lt;DIV&gt;Check it now&lt;/DIV&gt;&lt;DIV&gt;&lt;BR /&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 06 Dec 2025 12:42:29 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046534#M219868</guid>
      <dc:creator>ranto</dc:creator>
      <dc:date>2025-12-06T12:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: Prepare the contour stress plot</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046535#M219869</link>
      <description>&lt;P&gt;They error only I am also getting&amp;nbsp;&lt;/P&gt;&lt;P&gt;meanwhile please check your email&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had sent through email&lt;/P&gt;</description>
      <pubDate>Sat, 06 Dec 2025 12:49:23 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046535#M219869</guid>
      <dc:creator>ranto</dc:creator>
      <dc:date>2025-12-06T12:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: Prepare the contour stress plot</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046537#M219870</link>
      <description>&lt;P&gt;As I suspected, zipping doesn't help either, unfortunately.&lt;BR /&gt;Not sure what is going wrong here.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Actually you should not be able to send me an E-Mail as you should not be allowed to see my mail address in my profile.&lt;/P&gt;
&lt;P&gt;But you could send a PM via the message system here inside the forum. If you did, it did not work as I didn't receive anything.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the meantime I was curious and played around with the AI proposal.&lt;/P&gt;
&lt;P&gt;I guess you are looking for that kind of plot:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Werner_E_0-1765028828994.png" style="width: 628px;"&gt;&lt;img src="https://www.ptcusercommunity.com/t5/image/serverpage/image-id/132068i559A259F0B766AF5/image-dimensions/628x780?v=v2" width="628" height="780" role="button" title="Werner_E_0-1765028828994.png" alt="Werner_E_0-1765028828994.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;On contrary to the AI proposal grid size 20 means in my approach to divide the range from -200 to 200 into 20 intervals and so we have a 21 x 21 matrix and not a 20 x 20 matrix is suggested by the AI.&lt;/P&gt;
&lt;P&gt;May be a matter of personal preference or habit how to interpret the term "grid size".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;EDIT: An easier way to create the plot is to define a function for the z-values depending on x an y and then use "CreateMesh" to create the necessary data structure:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Werner_E_0-1765046181966.png" style="width: 553px;"&gt;&lt;img src="https://www.ptcusercommunity.com/t5/image/serverpage/image-id/132071i1CAC3E981774A638/image-dimensions/553x583?v=v2" width="553" height="583" role="button" title="Werner_E_0-1765046181966.png" alt="Werner_E_0-1765046181966.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;BTW, is there a specific reason for the addition of 0.001 in the calculation of "r"?&lt;/P&gt;</description>
      <pubDate>Sat, 06 Dec 2025 18:42:08 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046537#M219870</guid>
      <dc:creator>Werner_E</dc:creator>
      <dc:date>2025-12-06T18:42:08Z</dc:date>
    </item>
    <item>
      <title>Re: Prepare the contour stress plot</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046538#M219871</link>
      <description>&lt;DIV&gt;Thank you&lt;/DIV&gt;&lt;DIV&gt;I will deli from this&lt;/DIV&gt;&lt;DIV&gt;&lt;BR /&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 06 Dec 2025 13:52:29 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046538#M219871</guid>
      <dc:creator>ranto</dc:creator>
      <dc:date>2025-12-06T13:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: Prepare the contour stress plot</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046541#M219872</link>
      <description>&lt;P&gt;I'll try to add my worksheet - let's see if it works for me.&lt;/P&gt;
&lt;P&gt;I added a 3D plot,&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Werner_E_0-1765030815405.png" style="width: 400px;"&gt;&lt;img src="https://www.ptcusercommunity.com/t5/image/serverpage/image-id/132069i5FE394616FF9C01B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Werner_E_0-1765030815405.png" alt="Werner_E_0-1765030815405.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;but it doesn't look good in Prime compared to real Mathcad. Here mathcad 15&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Werner_E_1-1765030848852.png" style="width: 999px;"&gt;&lt;img src="https://www.ptcusercommunity.com/t5/image/serverpage/image-id/132070iE63BD97DC36DA8E4/image-size/large?v=v2&amp;amp;px=999" role="button" title="Werner_E_1-1765030848852.png" alt="Werner_E_1-1765030848852.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2025 13:30:16 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046541#M219872</guid>
      <dc:creator>Werner_E</dc:creator>
      <dc:date>2025-12-08T13:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: Prepare the contour stress plot</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046542#M219873</link>
      <description>&lt;P&gt;Looks that my attachment shows the same problem as yours.&lt;/P&gt;
&lt;P&gt;Let's notify&amp;nbsp;&lt;a href="https://www.ptcusercommunity.com/t5/user/viewprofilepage/user-id/1"&gt;@admin&lt;/a&gt;&amp;nbsp; as well. Hopefully the forum bug can be fixed even though its weekend ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;EDIT: In the meantime its Tuesday and it looks as if the problem finally is fixed.&amp;nbsp; The attachments seem to be downloadable by now.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 11:07:38 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046542#M219873</guid>
      <dc:creator>Werner_E</dc:creator>
      <dc:date>2025-12-09T11:07:38Z</dc:date>
    </item>
    <item>
      <title>Re: Prepare the contour stress plot</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046810#M219885</link>
      <description>&lt;P&gt;I've been trying this with Prime Express and have been puzzled for some time as to why my (simple) contours were so different from Werner's.&amp;nbsp; The difference has been driving me round the bend!&amp;nbsp; Luckily for my sanity, I've just noticed that there is a difference in the definition of the value of Z used by Werner and Ranto.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Zdefn.png" style="width: 473px;"&gt;&lt;img src="https://www.ptcusercommunity.com/t5/image/serverpage/image-id/132115i56975339D3CE7117/image-size/large?v=v2&amp;amp;px=999" role="button" title="Zdefn.png" alt="Zdefn.png" /&gt;&lt;/span&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;xval is divided by 200 in Ranto's case (which is what I used).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Alan&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 14:20:38 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046810#M219885</guid>
      <dc:creator>AlanStevens</dc:creator>
      <dc:date>2025-12-09T14:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: Prepare the contour stress plot</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046871#M219894</link>
      <description>&lt;P&gt;Arghh! Sorry for the confusion. I remember that I had a second look at this very expression because I wondered if there really was no factor xval or yval at the first summand, but completely overlooked the most obvious division by 200.&lt;/P&gt;
&lt;P&gt;Small cause, big effect:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Werner_E_0-1765306574842.png" style="width: 603px;"&gt;&lt;img src="https://www.ptcusercommunity.com/t5/image/serverpage/image-id/132141i5BEFFAF6B346BBCA/image-dimensions/603x434?v=v2" width="603" height="434" role="button" title="Werner_E_0-1765306574842.png" alt="Werner_E_0-1765306574842.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As contour plot is a premium feature I suppose you created it using the 'normal' xy-plot?&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 19:00:24 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046871#M219894</guid>
      <dc:creator>Werner_E</dc:creator>
      <dc:date>2025-12-09T19:00:24Z</dc:date>
    </item>
    <item>
      <title>Re: Prepare the contour stress plot</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046916#M219898</link>
      <description>&lt;P&gt;Than you&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Dec 2025 02:48:16 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1046916#M219898</guid>
      <dc:creator>ranto</dc:creator>
      <dc:date>2025-12-10T02:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: Prepare the contour stress plot</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1047108#M219904</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.ptcusercommunity.com/t5/user/viewprofilepage/user-id/66934"&gt;@Werner_E&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As contour plot is a premium feature I suppose you created it using the 'normal' xy-plot?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes.&amp;nbsp; Here is an image of my rather simplistic attempt at a 3D graph and a contour plot.&amp;nbsp; (Incidentally, although ranto originally asked for contours of 10, 20, 30, 40, 50, 60 and 70, I note that the last three aren't possible as the largest value of Z is just over 40.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TankNozzle.png" style="width: 999px;"&gt;&lt;img src="https://www.ptcusercommunity.com/t5/image/serverpage/image-id/132212iBF2D06CC46083B76/image-size/large?v=v2&amp;amp;px=999" role="button" title="TankNozzle.png" alt="TankNozzle.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Alan&lt;/P&gt;</description>
      <pubDate>Wed, 10 Dec 2025 19:57:47 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1047108#M219904</guid>
      <dc:creator>AlanStevens</dc:creator>
      <dc:date>2025-12-10T19:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: Prepare the contour stress plot</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1047110#M219905</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;although ranto originally asked for contours of 10, 20, 30, 40, 50, 60 and 70,&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It wasn't him but rather the AI (Deepseek) he had asked which also did not 'know' amongst others that Prime does not offer any "color maps" &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Dec 2025 20:09:24 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1047110#M219905</guid>
      <dc:creator>Werner_E</dc:creator>
      <dc:date>2025-12-10T20:09:24Z</dc:date>
    </item>
    <item>
      <title>Re: Prepare the contour stress plot</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1047112#M219906</link>
      <description>&lt;P&gt;Ah, yes.&amp;nbsp; It has also included what seems to me to be a completely unnecessary 0.001 in the definition of r.&amp;nbsp; &amp;nbsp;I doubt it's needed from a stressing point of view, and there aren't any division by zeros to avoid.&amp;nbsp; However, it's probably cleverer than me, so I left the 0.001 in my calculations!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Alan&lt;/P&gt;</description>
      <pubDate>Wed, 10 Dec 2025 20:23:21 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1047112#M219906</guid>
      <dc:creator>AlanStevens</dc:creator>
      <dc:date>2025-12-10T20:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: Prepare the contour stress plot</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1047114#M219907</link>
      <description>&lt;P&gt;Yes, I was also wondering about this summand 0.001 and asked ranto about it, but didn't get an answer. I also think that this summand has no special meaning and is simply an AI error.&amp;nbsp;On the other hand, it has hardly any effect on the result.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Dec 2025 20:30:21 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Prepare-the-contour-stress-plot/m-p/1047114#M219907</guid>
      <dc:creator>Werner_E</dc:creator>
      <dc:date>2025-12-10T20:30:21Z</dc:date>
    </item>
  </channel>
</rss>

