c10bacdp.py

Created by manuel-eleve-tle-techno-indice2020

Created on May 15, 2020

153 Bytes


from math import*

def plant():

    t=0; y = 0.1

    while y <= 1.95 :

        t=t + 1

        y=2/(1+19*exp(-0.04*t))

    return(t)