procedure TForm1.Button1Click(Sender: TObject);
var a:real;
i:integer;
begin
memo1.Clear;
for i:= strtoint(edit3.Text) to strtoint(edit4.Text) do
begin
a:= strtoint(edit2.Text)*exp(strtoint(edit1.Text)*(1/(273.15+i)-1/298.15)) ;
memo1.Lines.Add(inttostr(i)+' '+copy(floattostr(a),1,6));
end;
(原文件名:SNAG-0009.jpg)
谢谢。这类小软件肯定不能作为商业用途,能否将源代码也共享? 万一楼主以后找不到了,也可以在我们这里下载到 :)
这样本贴也能置cool :) 谢谢。
ourdev_248502.xls(文件大小:298K) (原文件名:Heating Level.xls)
Tt:侍测量的温度+绝对温度273.15
Rt:侍测温度下的阻值
Tn:常温25度+273.15
Rn:常温下的阻值
procedure TForm1.Button1Click(Sender: TObject);
var a:real;
i:integer;
begin
memo1.Clear;
for i:= strtoint(edit3.Text) to strtoint(edit4.Text) do
begin
a:= strtoint(edit2.Text)*exp(strtoint(edit1.Text)*(1/(273.15+i)-1/298.15)) ;
memo1.Lines.Add(inttostr(i)+' '+copy(floattostr(a),1,6));
end;
手册上说是:
R(t)=-exp(bt+c)
最后曲线拟合出来是R(t)=-1*exp(at^2+bt+c)
其中a、b、c是拟合出来的系数。
一周热门 更多>