cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - You can change your system assigned username to something more personal in your community settings. X

Question

ptc-5963661
1-Newbie

Question

Hy! I've created an algorithm. I've attached it.

In this algorithm I have assigned initial values to x1,y1,p1,p2,p3,p4.

Then I inserted a "while" function. My question is: why don't the variables take the new values?

For example: Q is the new value of A. This means that x1,x2,p1,p2,p4 have new values, but the results that the algorithm gives me are still the initial values. I want the new values that variables have untill the "while" function is fulfilled.

Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions

I guess the iteration should be sligthly different, but the main problem seems to be that the initial value for x1 and y1 are chosen in a way, that the RHS of the inequality would already yield a result greater than N if p1,p2 and p2 would be calculated the same way as shown in the iteration loop. So the iteration runs exatly one step and stops when that RHS is approx 10.7...

Solution could be to chose larger initial values for x1 and y1.

Find attached a routine which outputs a table so you can watch the values change. You will have to find suitable start values for x1 and y1.

1.png

But is it really mandatory that both x1 and y1 are changed the same way (-0.01)? I guess you are simply trying to search for values x1 and y1 which makes the RHS equal to N.

If thats true, so why not try a solve block:

2.png

Thats only one of an infinite number of solution pairs, so you could add some appropriate constraints like

3.png

or

4.png

Basically your RHS represents a surface in 3D which you have to intersect with the plane at height N:

5.png

The curve of intersection can also be drawn as a 2D plot, y1 over x1:

6.png

BTW, John Smith, isn't this question related to this one of John Air: http://communities.ptc.com/message/240228#240228 ?

View solution in original post

12 REPLIES 12

John Smith wrote:

...My question is: why don't the variables take the new values?

Because the initial value of that long expression is less than N. Hence the while loop is never entered!

Alan

I know. But the while loop makes the value grow until that N>... is not fulfilled.

Any idea of how can the while loop be entered?

RichardJ
19-Tanzanite
(To:ptc-5963661)

The while loop is entered only once. The values of a, b, c, d, e are assigned the starting values of x1, y1, p1, p2, p4. Then the values of x1, y1, p1, p2, p4 are changed. The while loop is not entered a second time, so what you get are the starting guesses. If the values of a, b, c, d, e are assigned after you have assigned the values for x1, y1, p1, p2, p4 you will see the values for the last time it entered the loop, rather then the one before that.

I tried your proposal and noticed a significant change.

The values are still not the ones that I want. I will review it.

RichardJ
19-Tanzanite
(To:ptc-5963661)

Why are they not the ones you want? They are the first set of values that makes the expression greater than N.

x and y have an initial value each. In the while loop they get smaller a-0.01 and b-0.01. That means that p1,p2 and p4 are getting bigger. (Q is getting smaller and the value N/Q is getting bigger). But my x and y values are going negative.

John Smith wrote:

In the while loop they get smaller a-0.01 and b-0.01.

...

Q is getting smaller

Are you sure?

While a and b sure decrease, L-a and B-b will increase.

Yes. But Q is an area. It's getting smaller.

RichardJ
19-Tanzanite
(To:ptc-5963661)

Well, if all you do is move the defintions around as I described, you will get weird results. Q is defined in terms of a and b, as are the new values of x1 and y1. But if you move the definitions of a and b down, then for those defitions of Q, x1, and y1 a and b are not defined. So you need to make a couple of other adjustments to accommodate the new assignment order. Does this do what you want?

I guess the iteration should be sligthly different, but the main problem seems to be that the initial value for x1 and y1 are chosen in a way, that the RHS of the inequality would already yield a result greater than N if p1,p2 and p2 would be calculated the same way as shown in the iteration loop. So the iteration runs exatly one step and stops when that RHS is approx 10.7...

Solution could be to chose larger initial values for x1 and y1.

Find attached a routine which outputs a table so you can watch the values change. You will have to find suitable start values for x1 and y1.

1.png

But is it really mandatory that both x1 and y1 are changed the same way (-0.01)? I guess you are simply trying to search for values x1 and y1 which makes the RHS equal to N.

If thats true, so why not try a solve block:

2.png

Thats only one of an infinite number of solution pairs, so you could add some appropriate constraints like

3.png

or

4.png

Basically your RHS represents a surface in 3D which you have to intersect with the plane at height N:

5.png

The curve of intersection can also be drawn as a 2D plot, y1 over x1:

6.png

BTW, John Smith, isn't this question related to this one of John Air: http://communities.ptc.com/message/240228#240228 ?

RichardJ
19-Tanzanite
(To:Werner_E)

BTW, John Smith, isn't this question related to this one of John Air:

Good catch!

Funny how the answer doesn't change, even when the questioners name does

Funny how the answer doesn't change,

nor did the subject

Top Tags