|
-
Sep 7th, 2000, 05:27 PM
#1
Thread Starter
Hyperactive Member
Watch this:
Example
i1*r1+i3*r3-u1=0
i2*r2+i3+r3+u2=0
The unknown varibles are i1, i2, i3.
Does anyone know how to make a procedure which
calculates the unknown varibles.
If it's possible the program should give an output
of its calculation progress. - Step to step.
Any suggestions?
thx, vbzero
-
Sep 7th, 2000, 05:50 PM
#2
Hyperactive Member
i1*r1+i3*r3-u1=0
i2*r2+i3+r3+u2=0
The unknown varibles are i1, i2, i3.
So you know both u1 and u2?
What about r1, r2 and r3?
You have 2 equations and 8 variables...
If u1, u2, r1, r2 and r3 are known then why not state them as constant values and re-arrange the algorithms.
-
Sep 10th, 2000, 11:26 AM
#3
Thread Starter
Hyperactive Member
All variables are known except i1, i2, i3.
The other variables are known but depend on the
user's input. (Maybe there are some TextBoxes to
set the values)
thx, vbzero
-
Sep 10th, 2000, 12:55 PM
#4
Lively Member
You need 3 equations to solve 3 unknown variables.
-
Sep 10th, 2000, 01:00 PM
#5
Thread Starter
Hyperactive Member
i3 is proberly also known:
i3=i1+i2
- so you can say i1+i2 instead i3
thx, vbzero
-
Sep 11th, 2000, 06:46 AM
#6
Frenzied Member
In that case
Code:
i3 - i1 - i2 = 0
i1 * r1 + i3 * r3 - u1 = 0
i2 * r2 + i3 + r3 + u2 = 0
You have 3 equations.
Harry.
"From one thing, know ten thousand things."
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|