MODEL: Two_Tanks_Oil_SEQUATIONS FOR BERKELEY MADONNAMETHOD RK4STARTTIME = 0STOPTIME = 10DT = 0.02Oil_volume_1(t) = Oil_volume_1(t - dt) + (- Current_of_oil) * dtINIT Oil_volume_1 = Cross_section_1*h1_initCurrent_of_oil = Flow_factor*Level_differenceOil_volume_2(t) = Oil_volume_2(t - dt) + (Current_of_oil) * dtINIT Oil_volume_2 = Cross_section_2*h2_initCurrent_of_oil = Flow_factor*Level_differenceCross_section_1 = 0.01131Cross_section_2 = 0.00525Flow_factor = 0.50e-4h1_init = 0.1405h2_init = 0.0515+0.002Level_1 = Oil_volume_1/Cross_section_1Level_2 = Oil_volume_2/Cross_section_2Level_difference = Level_1-Level_2