代码搜索结果

找到约 521,473 项符合 Control System 的代码

actuator_init.m

function actuator_init % Distributed control system: actuator node % % Receives messages from the controller and actuates % the plant. % Initialize TrueTime kernel ttInitKernel(1, 1, 'prioFP'); % n

controller_init.m

function controller_init % Distributed control system: controller node % % Receives messages from the sensor node, computes control signal % and sends it back to the actuator node. % Initialize True

readme

----------------------------------------------- TrueTime 1.5 Example: Distributed Control System Directory: $DIR/examples/distributed ----------------------------------------------- 1. INTRODUCTIO

actuator_init.cpp

// Distributed control system: actuator node // // Receives messages from the controller and actuates // the plant. #define S_FUNCTION_NAME actuator_init #include "ttkernel.cpp" // code function d

controller_init.cpp

// Distributed control system: controller node // // Receives messages from the sensor node, computes control signal // and sends it to the actuator node. Also contains a high-priority // disturbing t

sensor_init.cpp

// Distributed control system: sensor node // // Samples the plant periodically and sends the samples to the // controller node. #define S_FUNCTION_NAME sensor_init #include "ttkernel.cpp" // code

interference_init.cpp

// Distributed control system: interference node // // Generates disturbing network traffic. #define S_FUNCTION_NAME interference_init #include "ttkernel.cpp" // code function double sender_code(in

actuator_init.m

function actuator_init % Distributed control system: actuator node % % Receives messages from the controller and actuates % the plant. % Initialize TrueTime kernel ttInitKernel(0, 1, 'prioFP'); % n

controller_init.m

function controller_init(arg) % Distributed control system: controller node % % Receives messages from the sensor node, computes control signal % and sends it to the actuator node. Also contains a hi

sensor_init.m

function sensor_init % Distributed control system: sensor node % % Samples the plant periodically and sends the samples to the % controller node. % Initialize TrueTime kernel ttInitKernel(1, 0, 'pr