Dedicated forum for our customers to share, collaborate, discuss best practices.
Recently active
Hello everyone!I can't determine the origin of the 180-degree offset, between the two results, one in the first worksheet and the other in the second one. As for the creation of the graphs, with the interval chosen, it takes a long time (many minutes). A tip to speed up the drawing? (see photo).I enclose two worksheets dedicated to the same problem but with different methods.Thanks to whoever will answer me.
Hi allHas anyone encountered this before? In my Combobox, dimensionless inputs get units. You see the problem below. I'm thankful for any advise how to get rid of the problem 🙂
Hello, ???? How can I extend the above x(t,...) signal which is defined from -pi to pi to a periodic one so that I can display more periods of the signal, as it is shown below? Mathcad Prime 8 file attached. Thank you.
Hi, I'm having an issue where the vectors in the image below con't calculate into a result. The second image is the one where the results should be. I'm using Mathcad 20, so it's pretty old, and the original author of the workbook isn't around anymore. I can't see anything glaring and there was definitely a result from the workbook at some point. If anyyone can help it'd be greatly appreciated! Thanks, Tom
Hello, Do I need to define the dirac delta (unit impulse) function separately to be able to use (plot) it? Mathcad Prime 8 file attached.
please I don't know how to overcome this error
Hello, Input: where is the step function: Rewriting the above result: And calculating fourier transform by definition for the above input, results: (which is the correct answer) So, where is the mistake? The 2 above results should not have been equal? Mathcad Prime 8 file attached.
Hi Mathcaders,I am alittle bit confused on how to use lookup on mathcad prime 8. problem statement:I have a table of containing Steel section name and elastic section modulus as given below: In my work, I have to calculate an elastic section modulus and match with values in the table and choose the profile with the nearest upper value. My trials:1. I used the following expression: It only compares the first digit. The answer is always AZ12 until I increasesd the calculated value to more than 2000. 2. I used the following expression ( I got it from the internet)The answer is the same as before. Any help please?
I need to increase solve speed for a large worksheet. I click the multithreading button. First, it is not clear how to detoggle the pick. Second, the CPU time went up. Under what conditions does this option work. Or is this just a vaporware feature of P8? thank you
I have generated three plots for different z or distance now i would like to compare the width of axial maximum and the width of central maximum is the value r from 0 to the point where the cure achieves zero. I want to normalies and assume the value achive r=0 and i want to divide all values of I of I(r=0) how its possible to do this in mathcad please help!
We are trying to convert MathCAD programs to MathCAD Prime 9. After the conversion the resultant graphics are not display the grid axis that the users were getting in MathCAD 15. Is this a display setting or an issue with MathCAD prime?
Hello, Mathcad Prime 8 file attached.
Several cities have installed arrays of microphones and use the time delay of the sound of a gunshot to triangulate the location where the shot was fired. After several months of stumbling around I managed to get Prime Express to do this calculation. (In my previous life a solve block would have made the job simpler.) So let me crow a bit! Prime 4 Express attached.
Hello.Our company had a PC that acted as a license host. Recently this PC has crashed. We raised a virtual server in order to transfer the existing licenses to it, but the error occurs: "Upgradable products not available or already used on provided Product Code". And it is not possible to untie licenses through your personal account, because "Complience Hold". Tell me, please, are there any other options to restore licenses?We have MathCad Prime 3.1
Hi,I'm trying to understand how the IFFT works.The most difficult thing to be understood by me is the reason why, having 2049 complex samples (p0) I get as a result (4096) real numbers.The complex samples are not generated by me, are the result of an algorithm written by others.So I try to understand if there is something special in those samples.I tried to compare the result with what I get with Wolfram Mathematica (sorry about that):InverseFourier[p0, FourierParameters -> {1, -1}];and I get (2049) complex numbers. To get something similar in shape I need to take the real part of those numbers.Beside that the result of the IFFT is 2048 (magic number!) larger than the result of the InverseFourier.Can anyone explain to me the reason of those "mysteries"?Thanks
Hi, I would like your help to convert MathCAD 15 file to 7 Prime (see attached). The conversion dialog shows conversion failure. Thanks, -Peter
Hi The copy paste function is not working when I am trying to paste in word document, as I am using Student license any suggestion to copy the material.
Hi experts,I am trying to plot this equation.Could you please tell me how should I modify the equation, thanks.
Hello, I have been trying to solve this DAE system using MathCad Express Prime 9.0, but I have tried several things and I won't run. Can someone please take it a look and let me know why it does not work? Thank you very much.
Everything seems correct, but my graph doesn't come up...any ideas?!? Thanks.I don't see how I can insert my document here...or I would
This month’s challenge is electrical engineering related, but with multiple voltage potential sources in addition to resistors. See the image below. Scenario 1. We have a circuit with a motor (modeled as a 100 Ohm resistor), a 6V voltage source, and a 100 Ohm resistor. Calculate the current in the motor and the resistor. Scenario 2. We add another loop, with an additional 8V voltage source and a 120 Ohm resistor. Calculate the current in the motor and the two resistors. Scenario 3. We add another loop, with an additional 10V voltage source and a 140 Ohm resistor. Calculate the current in the motor and the three resistors. Scenario 4. We add another loop, with an additional 12V voltage source and a 160 Ohm resistor. Calculate the current in the motor and the four resistors. Note that these situations cannot be reduced to a combination of series or parallel resistors. There is a principle called Superposition you can apply instead. I’m looking forward to seeing what Mathcad techniques
I'm trying to figure out how to create a math variable name that includes both subscript and superscript characters like below: The subscript is no problem, how do I get the superscript portion? Not just in a way that will let me display this text, but will allow me to use this exact variable later for calculations.
I had the MathCad 15.1, and i use the code below to save the Sheets as à Pictures using the pdf creator.Now, I am using the PTC MathCad prime 8.0 and the code is not working. What I should do to repair it?(The case "PTC MathCad Prime COM Automation" is activated) ------------------------------------------------------------------------------------------'1.3.2'look at the mathcad and pdf crator reference, look in pdf creator for only a file per pagePublic MCDruckCancel As BooleanSub maktu()Dim outputjob As ObjectDim MC As MathcadPrime.AutomationDim WK As Mathcad.WorksheetsDim WS As Mathcad.WorksheetSet MC = New Mathcad.ApplicationSet WK = MC.WorksheetsTSstart = Now()MCDruckCancel = FalseDim DocList() As StringDim ADocList() As StringZ = 0DocPath = ActiveDocument.PathsDatei = Dir(DocPath & "\*.xmcd")While sDatei <> ""If IsNumeric(Left(sDatei, 3)) Then 'alle mit drei ziffern zuerst werden gedrucktReDim Preserve ADocList(Z)ADocList(Z) = sDateiZ = Z + 1End IfsDatei = Dir()Wend
Hi I have a problem to show my results in a table where the column will be given "t" and the rows will be "Pwf". If there's anyone who can help me, please. In the picture I use only t_0 in the formula and I would like to use all values immediately and present the result in the matrix 4x11, help me, please
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.