To study the growth and decay of current in RL circuit containing (a) DC source and (b) AC using Runge-Kutta method, and to draw graphs between current and time in each case.
To study the growth and decay of current in RL circuit containing (a) DC source and (b) AC using Runge-Kutta method, and to draw graphs between current and time in each case. Python Code: # --------------------------------------------------------------- # exp -10: To study the growth and decay of current in RL circuit # containing DC source using Runge - Kutta method , and to draw # graphs between current and time in each case # --------------------------------------------------------------- import numpy as np import math import matplotlib . pyplot as plt e = 1.0 ; # emf ( volt ) r = 0.2 ; # resistance ( Ohm ) l = 1.0 ; # inductor ( Henry ) tf ...