PTC Mathcad is Engineering Math Software That Allows You to Perform, Analyze, and Share Your Most Vital Calculations.
Recently active
Hello Everyone.From : To : " Is it possible to symbolic solve, x , y , the above ? "Thanks in advance for your time and help.Regards.
I have a company license to use Mathcad prime version 10. I provided license server name and port number. But when I open a file, it shows me to run this feature you need to upgrade to full license. There is a message: "This is a premium feature. To use this and other premium features, please upgrade to a full license using the upgrade button." When I try to upgrade the license, it directs me to purchase the feature. Other coworker does not need to upgrade to use the feature. Please let me know how to fix the problem. We are in different time zones.
I recently paid for a license on April 9th but I haven't received an email with the license file or a receipt for my payment. The person I spoke with is Reid Nolan. He said it would take no longer than 24 hours to get the license.
I am using Mathcad Release 15.0 and DatecodeM030Hello, I would like to numerically solve a system of partial differential equations of this kind for voltages and currents:i.e.:U1(t)=R1*i1(t)+L*d/dt(i1(t)+M1*d/dt(i2(t))+d/dt(M2(t))*IkU2(t)=R1*i2(t)+L*d/dt(i2(t)+M1*d/dt(i1(t))+d/dt(M3(t))*IkThe equations contain several differentials of different currents and also time dependant componentsHow could this be solved in mathcad?
Why is my "Excel Component" In-active???? Can anyone please help me out with this?- Srikar
Hi,I see that the Mathcad Prime roadmap is till Mathcad Prime 11 (2025): @DJNewman what will be for future regarding the Mathcad Prime development? Do you know and can say? And what features are targeted for next releases versions of Mathcad Prime?
Hi all, I need to solve a calculation using Mathcad prime 7 for my work, but i am newer of mathcad and not able to solve it by maself, even with the help of ChatGTP, it's not clear. So my problem is, I have an array of 3 values as Tp by witch i can get my L0 array, and the fuction that i wanna get solved is as below.When there is only one Tp/L0, the problem is easy to be solved, you will find the solution is 311.733m for a Tp of 15s. However, when the TP or L0 is an array of multiple values, then i cant get it solved correctly in the solve block, either i cant get a solution or the solution is incorrect (ie. for a Tp of 15s, the solution is 352.175m comparing to 311.733m that i found at the other sheet).Btw, in my full calculation sheet (as shown below as screenshot), i build the block in the same way, not sure why it works but not in the calculation table I built separately. Can someone can help me write it correctly ? thanks Attachment: 
Hello , How should I fix the following issue. Initially works fine but changing the units cause the following error.
I have a few older Mathcad files. Some as old as v2001i. I would like to read the files to see if there is anything usable. I tried the free Mathcad version, but it will not open the files. Is there a way to see the files without Mathcad. I did have a license 20+ years ago, but not todayThank You
Hi, I have an old Mathcad sheet and I am not sure why I can not get the final solution.
Hi,We have MathCad Prime license. Please help me find the Mathcad Prime version 10 to download.Kind regards,Xiaojiang
Hi,The visual quality of chart components (MathCad 10) when printed (pdf) seems not as good as that of "standard" plots, and changing dpi in printer settings didn't help there.Is there any tip to improve this?Thanks for your help,Cédric
I want to keep EI as EI in my calculations, as EI was defined previously. wondering if I can do that, and then I also want to extract 0.5 values out, because these are my Distribution factors. so I want to be able to type DF_BA = 0.5.
EMailMessage 526 Authentication failure
Good Morning, Community,Would anybody be kind enough to help me on how to create a table in Mathcad Prime 8. Please see below.Thank You, Boyer
Hello, Very new to the software which I plan to use as a worksheet for exercises, so the following may be requiring a very simple solution.I am using Mathcad Prime 9.0.0.0. I am trying to solve an equation both symbolically and numerically (?):I don't seem to be able to get a result and I also don't seem to be able to use = instead of :=. Any help?Thanks!
I was trying trigonometric functions in Mathcad & for some reason I couldn`t get these results/values in fraction mode. Is there a way to enable them? I couldn`t get it in Math Formatting Tab as well. Please feel free to share your thoughts.- Srikar
I am using Mathcad Prime Release 8.0 and Datecode8.0.0.0I just moved from Prime 5.0 to 8.0, and some integrals (symbolic calculation with units) no longer calculate: while it tool a couple of minutes only, the orange disk turns infinitely without success.I'm wondering whether I made a spelling error due to new engine, but I cannot find the solution.
i need this application for education
I am trying to use the free 30 day trial for the prime version so I dont think I have the product code since I technically didn't purchase anything.
Hi I need to use Newton algorythm with prime. I write algorythm step by step. I don't know prime correctly to make a program for iterative loop. I need to make 10 loop max, and i want to program break when: - iterative loop over 10 or - Error control match with range value Ec I need to enter manualy first step x0 I need to enter nanualy Error_control Ec Please, can you help me to write NR with program in prime. Thanks in this capture: find root for f(x) function with NR algorythm
When using the Application Programming Interface (API) for C#, only .net framework 4.8 is supported. This version is getting quite old. i.e. released 2019When will the C# API support .NET 8? Is this in the pipeline of future updates for MathCAD Prime
MathCAD Prime 10 only supports Net48 for the API. Which future version will support net8?
I have an ascii text data file that has 3000+ lines of information. I am attempting to extract some values from the first "column" of a group of lines near the end of the file. The lines are bracketed by known labels. I have attempted to do this using the READFILE command in the following approach: FileDat := READFILE("path to file", "delimited", 1, [1,1])startline:= match("Data Starts Here", FileDat) + 1endline:= match("Data Ends Here", FileDat) -1data:= READFILE("path to file", "delimited", [startline, endline],[1,1],1) I have two questions:1) Is there a way to match the full expression, including spaces, in the data file? Right now, it is not matching the "Data Starts Here" - it is only getting the first word "Data". I can correct this by putting underscores in the expression to be matched, and in the data file, but that is a less desirable workaround. 2) I note that the first "READFILE" generates an array (FileDat) that pulls in the first column (or first word o
I am using an include statement to include calculations and values from a reference sheet in my main Mathcad document. Is there a way to get access to variables defined in the parent document in the reference document? For example, if I define a variable called "mass" in the parent document, and then I have an expression in the referenced document that multiplies mass by 2, as in: double_mass := mass * 2, will that work? Right now, I am only able to use variables in the reference sheet that have been defined in that sheet. I do note that functions and variables defined in the reference sheet are available in the parent sheet following the include statement, as expected.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.