Post Reply 
Edit protection for fomula's in sover app
10-18-2016, 07:22 PM
Post: #4
RE: Edit protection for fomula's in sover app
One possible solution is to write a small program that recall SOLVE Application and assign the correct values to the variables. something like this:
Code:

EXPORT rtd()
BEGIN
STARTAPP("Solve");
A := 3.9083ᴇ−3;
B := 5.775ᴇ−8;
P := 100;
T := 0;
R := 0;
"R=P*(1+A*T+B*T^2)"▶E1;
PRINT();
PRINT("R = Ohm Value");
PRINT("A = 0.0039083");
PRINT("T = Temperature");
PRINT("B = -0.00000005775");
PRINT("T = RTD Type");
END;
This is an equation that I use often in my job. In this way you assign the values to the variables each time that you recall the program.


bye!!
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Edit protection for fomula's in sover app - simone_71 - 10-18-2016 07:22 PM



User(s) browsing this thread: 1 Guest(s)