Help with a Resistor Cube

Thread Starter

jpmillet

Joined Nov 20, 2009
2
I need to use the node tension method to find the resistance in the traditional resistor cube. Please its for my university class, im from Mexico. Hope someone can help.
 

The Electrician

Joined Oct 9, 2007
2,970
Did you read the sticky post at the top of the forum?

This is not a place where someone will do your homework for you.

You should show your own attempt to solve the problem, then someone will help you.
 

Thread Starter

jpmillet

Joined Nov 20, 2009
2
Yes i read the sticky note, i am trying to do this for a long time, i was investigating too on the internet and found some solutions but with other methods, i dont want somebody to do the homework for me, i just one someone who can point me in the right direction.
Thankyou.
 

rogs

Joined Aug 28, 2009
279
Classic case of if you're intending to become an academic, or a practical 'hands on' engineer/tech.
If it's the latter, then spend $1 and build one - and use a meter to measure the real answer. Then try to figure out the maths to check your answer.

If you find that too difficult, then stick with finding practical answers to real world problems, and use the maths you need from those who have already figured out those answers.

If you can figure out the maths, then you might stand a chance of gaining enough qualifications so that you can become an 'engineer' without getting your fingers dirty!

Just don't give up if your maths aren't good enough. The world has already lost too many good potential 'engineers' because their brains weren't naturally wired up to pass the 'maths' exams!
 

nopitan

Joined Nov 25, 2009
2
I have to write this in MARIE Assemble Code:

M = 1;
N = 1;
while M < 16
{ M = M + N:
N = N + 1;
} end while

This is what I have: Can you please make adjustments as needed. Thank You in Advance!!

Org 100 / This starts the program at address 100
Load N / Load N into the AC
Add One / Increment
Store Next / Store this address as out Next pointer
Load M / Load M into the AC
Add N / Add N to M
Store Ctr / Store this value in Ctr to control looping
Loop, Load Sum / Load the Sum into AC
AddI Next /Add the value pointed to by location Next
Store Sum / Store this Sum
Load Next / load Next
Add One / Increment by one to point to next address address
Store Next / Store in our pointer Next
Load Ctr / Load the loop control variable
Add Next / Add the value pointed to by location Next
Store Ctr / Store thie new value in loop control variable
Skipcond 000 / if control variable < 16 then skip next instruction
Jump Loop / Otherwise, go to Loop
Halt / Terminate Program
M, Dec 1 / M = 1
N, Dec 1 / N = 1
One, Dec 1 / Used to Increment or Decrement
Next, Hex 0 / A pointer to the next number to add
Ctr, Hex 0 / The loop control variable
Sum, Dec 0 / The sum
__________________
http://calculettepret**********.com/[url=http://calculettepret**********.com/]Taux calculette pret ********** | Calcul emprunt pret immo | Taux interet calculette credit **********


[/URL]
 

nopitan

Joined Nov 25, 2009
2
I have to write this in MARIE Assemble Code:

M = 1;
N = 1;
while M < 16
{ M = M + N:
N = N + 1;
} end while

This is what I have: Can you please make adjustments as needed. Thank You in Advance!!

Org 100 / This starts the program at address 100
Load N / Load N into the AC
Add One / Increment
Store Next / Store this address as out Next pointer
Load M / Load M into the AC
Add N / Add N to M
Store Ctr / Store this value in Ctr to control looping
Loop, Load Sum / Load the Sum into AC
AddI Next /Add the value pointed to by location Next
Store Sum / Store this Sum
Load Next / load Next
Add One / Increment by one to point to next address address
Store Next / Store in our pointer Next
Load Ctr / Load the loop control variable
Add Next / Add the value pointed to by location Next
Store Ctr / Store thie new value in loop control variable
Skipcond 000 / if control variable < 16 then skip next instruction
Jump Loop / Otherwise, go to Loop
Halt / Terminate Program
M, Dec 1 / M = 1
N, Dec 1 / N = 1
One, Dec 1 / Used to Increment or Decrement
Next, Hex 0 / A pointer to the next number to add
Ctr, Hex 0 / The loop control variable
Sum, Dec 0 / The sum

Taux calculette pret ********** | Calcul emprunt pret immo | Taux interet calculette credit **********

 
Top