Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more!
X
After "if SR<=100" it is clear that SR must be >100 in the "else" branch and so you don't need to ask if SR>100.
The program covers SR<=100 and also SR>100, so all possibilities for SR are covered. But the program should also cover all possibilities ...
View more
The best way of using the symbolic solver is to use it with symbols only. That is:
- Do NOT use units.
- Do NOT use floating point numbers ( integers are OK, instead of 0.5 use 1/2, instead of 1.414... use √2 ).
It means that any variables you use in...
View more
Using the basic motor (DCPM) motor equation ...electrical and mechanical which have differential equations. I can solve the differential equations in a solve block. I want to create a sum squared error between the measured data and the model, and the...
View more
Create the contour plot in mathcad prime version 11 / API 650 TANK NOZZLE ANALYSIS WITH 30mm PAD
// Mathcad Prime Worksheet
// Date: 2024
// ============================================
// 1. INPUT PARAMETERS
// =====================================...
View more