Recent content by surfer

  1. S

    Bilateral and non-bilateral components

    Thank you for answer ,Cristo
  2. S

    Bilateral and non-bilateral components

    What is the mean of bilateral and non-bilateral components in the electrical circuit?
  3. S

    Fortran How Can I Modify This Program to Show Complex Roots?

    Ax^2+Bx+C=0 PROGRAM delta1 IMPLICIT NONE REAL :: A,B,C REAL :: DELTA,X1,X2 PRINT *,"Enter the a,b,and c" READ *,A,B,C delta=b**2-4*a*c IF (delta>0)THEN PRINT *,"The roots are real" X1=(-B+SQRT(DELTA))/(2*A) X2=(-B-SQRT(DELTA))/(2*A) PRINT *,"X1 = ",X1,"X2 = ",X2...
  4. S

    Ohm's Law vs Ohmmeter: Comparing Resistance Values

    In fact, I asked this question in general. So i have wanted you to give a general answer to me. There is no specific ohmmeter and there is no specific resistor. I asked only which one is more reliable? And thank all of you for your interests.
  5. S

    Ohm's Law vs Ohmmeter: Comparing Resistance Values

    Are the resistance values of resistors which measured by ohmmeter and Ohm's law equal each other. Which of them are realiby than other? Please help me!
Back
Top