Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
Hi everybody
I have a system of equations with three variables that depend on each other and that are solved by iteration. What I am trying to do is to leave this system of equations in function to the variables ds, Ds and Dliq.
To better understand what I want, I have attached an example of what I want to do.
In advance thanks for the help.
Solved! Go to Solution.
Terrys example shows what you basically have to do to turn a solve block into a function of some arguments.
But the approach will fail in your example because the result of the solve block is a vector with elements of different dimensions (2x dimensionless and 1x speed). This is something Mathcad cannot deal with.
So you would have to correct for this additionally - either make v.s dimensionless or make the other two with dimension speed.
See the attached of some ways how to accomplish that.
Hi,
You can define a function to equal the "Find" statement. This is called parameterizing the solve block.
Here is an example. You can do the same in your instance.
Cheers
Terry
Terrys example shows what you basically have to do to turn a solve block into a function of some arguments.
But the approach will fail in your example because the result of the solve block is a vector with elements of different dimensions (2x dimensionless and 1x speed). This is something Mathcad cannot deal with.
So you would have to correct for this additionally - either make v.s dimensionless or make the other two with dimension speed.
See the attached of some ways how to accomplish that.
Thank you very much to both