Hello All,
Here I Have one Formula i want to find a logic for this through c# code
T_negative = T_0 + (T_Filtertime - 10ms) for T_Filtertime <= 100ms
T_negative = T_0 + (T_Filtertime * 0.9) for T_Filtertime > 100ms
T_negative = T_0 + (T_Filtertime - 5000ms) for T_Filtertime >= 50000ms
T_positive = T_0 + (T_Filtertime + 10ms) + (20ms + 10ms) for T_Filtertime <= 100ms
T_positive = T_0 + (T_Filtertime * 1.1) + (20ms + 10ms) for T_Filtertime > 100ms
T_positive = T_0 + (T_Filtertime + 5000ms) + (20ms + 10ms) for T_Filtertime >= 50000ms
as we see above condition i want to find both negative and positive Values
Riddhi ValechaPosted Sep 19, 2014, 5:03 AM
Please let us know the following -
1. What are the variables.
2. What the user should enter.
3. What system should calculate and display.
------------------
T_Positive and T_Negative are inputs from user?
T_0 is a variable ??
---------
What logic you want ?? PLease explain.