caproto.ioc_examples.decay.Decay

class caproto.ioc_examples.decay.Decay(*args, **kwargs)[source]

Simulates an exponential decay to a set point.

Follows \(T_{output} = T_{var} exp^{-(t - t_0)/K} + T_{setpoint}\)

The default prefix is decay:

Decay pvproperties

Attribute

Suffix

Docs

Type

Notes

Alarm Group

K

K

float

Tvar

Tvar

float

done

done

float (ai)

Read-only

readback

I

float (ai)

Read-only Startup

setpoint

SP

float

Put

Methods

group_read(instance)

Generic read called for channels without get defined

group_write(instance, value)

Generic write called for channels without put defined

Attributes

default_values

type_map

type_map_read_only

pvproperty methods

readback.startup(self, instance, async_lib)
Source code: readback.startup
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
            async def scanned_startup(group, prop, async_lib):
                if use_scan_field and period is not None:
                    if prop.field_inst.scan_rate_sec is None:
                        # This is a hook to allow setting of the default scan
                        # rate through the 'period' argument of the decorator.
                        prop.field_inst._scan_rate_sec = period
                        # TODO: update .SCAN to reflect this number

                sleep = async_lib.library.sleep
                while True:
                    t0 = time.monotonic()
                    if use_scan_field:
                        iter_time = prop.field_inst.scan_rate_sec
                        if iter_time is None:
                            iter_time = 0
                    else:
                        iter_time = period

                    if iter_time > 0:
                        await call_scan_function(group, prop, async_lib)
                    else:
                        iter_time = 0.1
                        # TODO: could the scan rate - or values in general -
                        # have events tied with them so busy loops are
                        # unnecessary?
                    elapsed = time.monotonic() - t0
                    sleep_time = (max(0, iter_time - elapsed)
                                  if subtract_elapsed
                                  else iter_time)
                    await sleep(sleep_time)