new version of TecsServer and conversion utility M.Z.
This commit is contained in:
@ -243,9 +243,14 @@ int CocPutThisVar(CocVar *var, void *base, StrBuf *buf, int separator) {
|
|||||||
int CocGetVar(const char *name, StrBuf *buf, int separator) {
|
int CocGetVar(const char *name, StrBuf *buf, int separator) {
|
||||||
CocVar *var;
|
CocVar *var;
|
||||||
void *base;
|
void *base;
|
||||||
|
static char msg[128];
|
||||||
|
|
||||||
var=CocFindVar(name, &base);
|
var=CocFindVar(name, &base);
|
||||||
if (var==NULL) ERR_MSG("undefined variable");
|
if (var==NULL) {
|
||||||
|
str_copy(msg, "undefined variable ; ");
|
||||||
|
str_append(msg, name);
|
||||||
|
ERR_MSG(msg);
|
||||||
|
}
|
||||||
ERR_I(CocGetThisVar(var, base, buf, separator));
|
ERR_I(CocGetThisVar(var, base, buf, separator));
|
||||||
return(0);
|
return(0);
|
||||||
OnError: str_copy(err_name, name); ErrTxt(err_name,0); return(-1);
|
OnError: str_copy(err_name, name); ErrTxt(err_name,0); return(-1);
|
||||||
@ -277,11 +282,11 @@ void CocFreeVarList(void) {
|
|||||||
|
|
||||||
char *CocReadVars(char *str, char stop){
|
char *CocReadVars(char *str, char stop){
|
||||||
int i, l;
|
int i, l;
|
||||||
char *eql, *cr, buf[80];
|
char *eql, *cr, buf[256];
|
||||||
StrBuf sbuf;
|
StrBuf sbuf;
|
||||||
|
|
||||||
/* interprete variables until stop character appeares */
|
/* interprete variables until stop character appeares */
|
||||||
i=sscanf(str, "%79s%n", buf, &l);
|
i=sscanf(str, "%255s%n", buf, &l);
|
||||||
while (i>0 && buf[0]!=stop) {
|
while (i>0 && buf[0]!=stop) {
|
||||||
if (buf[0]=='!') {
|
if (buf[0]=='!') {
|
||||||
cr=strchr(str, '\n');
|
cr=strchr(str, '\n');
|
||||||
@ -293,7 +298,7 @@ char *CocReadVars(char *str, char stop){
|
|||||||
*eql='\0';
|
*eql='\0';
|
||||||
if (eql[1] == '\'' || eql[1]== '"') {
|
if (eql[1] == '\'' || eql[1]== '"') {
|
||||||
eql=strchr(str, '=');
|
eql=strchr(str, '=');
|
||||||
StrNLink(&sbuf, eql+1, 80);
|
StrNLink(&sbuf, eql+1, 256);
|
||||||
ERR_I(CocGetVar(buf, &sbuf, StrNONE));
|
ERR_I(CocGetVar(buf, &sbuf, StrNONE));
|
||||||
str = sbuf.buf + sbuf.rdpos;
|
str = sbuf.buf + sbuf.rdpos;
|
||||||
} else {
|
} else {
|
||||||
@ -302,7 +307,7 @@ char *CocReadVars(char *str, char stop){
|
|||||||
ERR_I(CocGetVar(buf, &sbuf, ' '));
|
ERR_I(CocGetVar(buf, &sbuf, ' '));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
i=sscanf(str, "%79s%n", buf, &l);
|
i=sscanf(str, "%255s%n", buf, &l);
|
||||||
}
|
}
|
||||||
return str;
|
return str;
|
||||||
OnError: return NULL;
|
OnError: return NULL;
|
||||||
|
735
tecs/conv.f
Normal file
735
tecs/conv.f
Normal file
@ -0,0 +1,735 @@
|
|||||||
|
program conv
|
||||||
|
|
||||||
|
include 'conv.inc'
|
||||||
|
|
||||||
|
logical init
|
||||||
|
integer i,j,l,lin,iostat
|
||||||
|
character*128 line
|
||||||
|
character*2048 input
|
||||||
|
|
||||||
|
data lun/0/,pos/0/,nlist/0/
|
||||||
|
|
||||||
|
path=' '
|
||||||
|
lp=0
|
||||||
|
verbose=.false.
|
||||||
|
call sys_get_cmdpar(input, l)
|
||||||
|
if (input .eq. ' ') then
|
||||||
|
verbose=.true.
|
||||||
|
print '(a,$)',
|
||||||
|
1' File(s) (separated with space): '
|
||||||
|
read(*,'(a)',end=99) input
|
||||||
|
if (input .eq. ' ') goto 99
|
||||||
|
endif
|
||||||
|
i=index(input, '-p')
|
||||||
|
if (i .ne. 0) then ! first path option valid from start
|
||||||
|
j=index(input(i+1:), ' ')
|
||||||
|
call str_trim(path, input(i+2:i+j), lp)
|
||||||
|
endif
|
||||||
|
i=0
|
||||||
|
do while (input(i+1:) .ne. ' ')
|
||||||
|
j=index(input(i+1:), ' ')
|
||||||
|
if (j .le. 1) then
|
||||||
|
i=i+1
|
||||||
|
else if (input(i+1:i+2) .eq. '-p') then
|
||||||
|
call str_trim(path, input(i+3:i+j), lp)
|
||||||
|
i=i+j
|
||||||
|
else if (input(i+1:i+1) .eq. '-') then
|
||||||
|
print *,'unknown option: ',input(i+1:i+j)
|
||||||
|
i=i+j
|
||||||
|
else
|
||||||
|
call str_trim(file, input(i+1:i+j), lf)
|
||||||
|
i=i+j
|
||||||
|
if (verbose) print *
|
||||||
|
open(1,name=file(1:lf),status='old',iostat=iostat)
|
||||||
|
if (iostat .ne. 0) then
|
||||||
|
if (verbose) then
|
||||||
|
print *,'can not open ',file(1:lf)
|
||||||
|
print "(x,60('-'))"
|
||||||
|
endif
|
||||||
|
nlist=nlist+1
|
||||||
|
list(nlist)='can not open '//file(1:lf)
|
||||||
|
else
|
||||||
|
lin=0
|
||||||
|
do
|
||||||
|
call lsc_errinit(1) ! 1=lun
|
||||||
|
call lsc_convert_table(lin)
|
||||||
|
if (lin .lt. 0) goto 19
|
||||||
|
if (verbose) print "(x,60('-'))"
|
||||||
|
enddo
|
||||||
|
19 continue
|
||||||
|
close(1)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
enddo
|
||||||
|
|
||||||
|
do i=1,nlist
|
||||||
|
call str_trim(list(i), list(i), l)
|
||||||
|
print *,list(i)(1:l)
|
||||||
|
enddo
|
||||||
|
|
||||||
|
99 continue
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
subroutine pack(line, l, x, y, offset, m)
|
||||||
|
character line*(*)
|
||||||
|
integer l, offset, m
|
||||||
|
real x(m), y(m)
|
||||||
|
|
||||||
|
integer j,p
|
||||||
|
|
||||||
|
p=0
|
||||||
|
do j=1,m
|
||||||
|
call str_append(line, p, '#0,')
|
||||||
|
call cvt_real_str(line(p+1:), l, 1.0*(offset+j), 1, 0, 6, 3)
|
||||||
|
p=p+l
|
||||||
|
call str_append(line, p, ':')
|
||||||
|
call cvt_real_str(line(p+1:), l, x(j), 1, 0, 6, 3)
|
||||||
|
p=p+l
|
||||||
|
call str_append(line, p, ',')
|
||||||
|
call cvt_real_str(line(p+1:), l, y(j), 1, 0, 6, 3)
|
||||||
|
p=p+l
|
||||||
|
call str_append(line, p, ';')
|
||||||
|
enddo
|
||||||
|
line(p:p)=' '
|
||||||
|
l=p-1
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
subroutine lsc_convert_table(lin)
|
||||||
|
|
||||||
|
implicit none
|
||||||
|
include 'conv.inc'
|
||||||
|
|
||||||
|
integer lin
|
||||||
|
|
||||||
|
integer ntypes,nvolts, namps
|
||||||
|
parameter (ntypes=12, nvolts=12, namps=12)
|
||||||
|
integer np
|
||||||
|
|
||||||
|
real x(200), y(200), ex, ey
|
||||||
|
integer i,j,l,p,li,crc,form,iostat
|
||||||
|
|
||||||
|
character name*15, sensor*10, header*64, line*128, old*128, intype*16
|
||||||
|
character crcmp*3, filnam*128, cfgdir*128
|
||||||
|
character c40*40/'0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ$+-&'/
|
||||||
|
integer unit, stype, excit, irange, coef, iunit, stdcurv
|
||||||
|
! codes
|
||||||
|
character types(0:ntypes)*12/'Special','Si Diode','GaAlAs Diode'
|
||||||
|
1 ,'Pt250 Ohm','Pt500 Ohm','Pt2500 Ohm','RhFe','C-Glass'
|
||||||
|
1 ,'Cernox','RuOx','Ge','Cap','Tc'/
|
||||||
|
integer nunits
|
||||||
|
parameter (nunits=3)
|
||||||
|
character units(nunits)*5/'mV','V','Ohm'/
|
||||||
|
integer nexcits
|
||||||
|
parameter (nexcits=12)
|
||||||
|
character excits(0:nexcits)*8/'Off','30nA','100nA','300nA','1uA','3uA'
|
||||||
|
1 ,'10uA','30uA','100uA','300uA','1mA','10mV','1mV'/
|
||||||
|
integer nforms
|
||||||
|
parameter (nforms=5)
|
||||||
|
character forms(nforms)*6/'ill','ill','lin','log','loglog'/
|
||||||
|
|
||||||
|
! default values
|
||||||
|
integer defu(ntypes)/ 1, 1, 2, 2,2, 2, 2, 2, 2, 2, 3, 1/ ! unit
|
||||||
|
integer defe(ntypes)/ 6, 6,10,10,8,10,11,11,11,12, 0, 0/ ! excit
|
||||||
|
integer defr(ntypes)/11,12, 8, 9,8, 8, 4, 4, 4, 1, 1, 6/ ! range
|
||||||
|
integer defc(ntypes)/ 1, 1, 2, 2,2, 2, 1, 1, 1, 1, 2, 2/ ! coef
|
||||||
|
real volts(nvolts)/1E-3,2.5E-3,5E-3,1E-2,2.5E-2,5E-2
|
||||||
|
1 ,1E-1,2.5E-1,5E-1,1E-0,2.5E-0,5E-0/
|
||||||
|
real amps(namps)/3E-8,1E-7,3E-7,1E-6,3E-6,1E-5,3E-5,1E-4,3E-4,1E-3
|
||||||
|
1 ,3E-8,3E-8/ ! minimal values are for voltage excitation
|
||||||
|
integer stdmax
|
||||||
|
parameter (stdmax=10)
|
||||||
|
character*40 stdhdr(stdmax)/
|
||||||
|
1 'DT-470 ,Standard ,2,+475.000E+0,1',
|
||||||
|
1 'DT-500-D ,Standard ,2,+365.000E+0,1',
|
||||||
|
1 'DT-500-E1 ,Standard ,2,+330.000E+0,1',
|
||||||
|
1 'PT-100 ,Standard ,3,+800.000E+0,2',
|
||||||
|
1 'PT-1000 ,Standard ,3,+800.000E+0,2',
|
||||||
|
1 'TYPE K ,Standard ,1,+1645.00E+0,2',
|
||||||
|
1 'TYPE E ,Standard ,1,+1188.50E+0,2',
|
||||||
|
1 'TYPE T ,Standard ,1,+673.000E+0,2',
|
||||||
|
1 'CrAuFe.03%,Standard ,1,+500.000E+0,2',
|
||||||
|
1 'CrAuFe.07%,Standard ,1,+610.000E+0,2'/
|
||||||
|
integer stdtype(stdmax)/1,1,1,4,5,12,12,12,12,12/
|
||||||
|
|
||||||
|
real tlim, range, xmax, ymax, curr, rl
|
||||||
|
|
||||||
|
real x1,x2,xi,y1,y2,yi,sum,sum1,sum2,mum,mum1,mum2,d,at,at1,at2
|
||||||
|
logical eof, first, inverted
|
||||||
|
|
||||||
|
! functions
|
||||||
|
integer lsc_getno
|
||||||
|
external lsc_getno, pack
|
||||||
|
|
||||||
|
first=.true.
|
||||||
|
eof=.false.
|
||||||
|
np=0
|
||||||
|
name=' '
|
||||||
|
sensor=' '
|
||||||
|
unit=0
|
||||||
|
tlim=0
|
||||||
|
stype=0
|
||||||
|
excit=0
|
||||||
|
form=0
|
||||||
|
range=-1.0
|
||||||
|
stdcurv=0
|
||||||
|
1 read(1,'(a)',err=97,end=97) line
|
||||||
|
call str_trim(line, line, l)
|
||||||
|
lin=lin+1
|
||||||
|
call str_first_nonblank(line, i)
|
||||||
|
if (i .eq. 0) goto 1
|
||||||
|
if (line(i:i) .eq. '!') goto 1
|
||||||
|
first=.false.
|
||||||
|
call str_upcase(line(1:l),line(i:l))
|
||||||
|
i=index(line(1:l),'!')
|
||||||
|
if (i .ne. 0) line=line(1:i-1)
|
||||||
|
call str_trim(line(1:l),line(1:l),l)
|
||||||
|
if (line(1:4) .ne. 'CURV') then
|
||||||
|
i=index(line,'=')
|
||||||
|
if (i .eq. 0) then
|
||||||
|
call lsc_error(lin, 'missing "="')
|
||||||
|
goto 1
|
||||||
|
endif
|
||||||
|
if (i .eq. l) then
|
||||||
|
call lsc_error(lin, 'missing value')
|
||||||
|
goto 1
|
||||||
|
endif
|
||||||
|
call str_first_nonblank(line(i+1:l), j)
|
||||||
|
i=i+j
|
||||||
|
if (line(1:4) .eq. 'SENS') then
|
||||||
|
sensor=line(i:l)
|
||||||
|
name=sensor
|
||||||
|
elseif (line(1:4) .eq. 'UNIT') then
|
||||||
|
unit=lsc_getno(units, nunits, line(i:l))
|
||||||
|
if (unit .le. 0) call lsc_error(lin, 'illegal unit')
|
||||||
|
elseif (line(1:4) .eq. 'TLIM') then
|
||||||
|
read(line(i:l),*,err=92,end=92) tlim
|
||||||
|
elseif (line(1:4) .eq. 'TYPE') then
|
||||||
|
stype=lsc_getno(types, ntypes+1, line(i:l))-1
|
||||||
|
if (stype .lt. 0) call lsc_error(lin, 'illegal type')
|
||||||
|
elseif (line(1:4) .eq. 'EXCI') then
|
||||||
|
call str_substitute(line(1:8),line(i:l),' ',char(0))
|
||||||
|
excit=lsc_getno(excits, nexcits, line(1:8))-1
|
||||||
|
if (excit .lt. 0) call lsc_error(lin, 'illegal excitation')
|
||||||
|
elseif (line(1:4) .eq. 'RANG') then
|
||||||
|
read(line(i:l),*,err=93,end=93) range
|
||||||
|
if (range .lt. 0) goto 93
|
||||||
|
elseif (line(1:4) .eq. 'FORM') then
|
||||||
|
form=lsc_getno(forms, nforms, line(i:l))
|
||||||
|
if (form .lt. 3) call lsc_error(lin, 'illegal format')
|
||||||
|
else
|
||||||
|
call lsc_error(lin, 'unknown parameter name')
|
||||||
|
endif
|
||||||
|
goto 1
|
||||||
|
endif
|
||||||
|
if (sensor .eq. ' ') call lsc_error(lin, 'missing sensor name')
|
||||||
|
i=index(line,'=')
|
||||||
|
if (i .ne. 0) then
|
||||||
|
read(line(i+1:l), *, err=2,end=2) stdcurv
|
||||||
|
2 continue
|
||||||
|
if (stdcurv .lt. 0 .or. stdcurv .gt. stdmax) then
|
||||||
|
call lsc_error(lin, 'illegal standard curve no.')
|
||||||
|
goto 101
|
||||||
|
endif
|
||||||
|
if (unit .ne. 0 .or. stype .ne. 0 .or.
|
||||||
|
1 excit .ne. 0 .or. tlim .ne. 0) then
|
||||||
|
if (verbose) then
|
||||||
|
print *,'Warning: all parameters except "sens"'
|
||||||
|
1 ,', "range" and "curv" are ignored',char(7)
|
||||||
|
endif
|
||||||
|
errstat=max(errstat,1)
|
||||||
|
endif
|
||||||
|
line=stdhdr(stdcurv)
|
||||||
|
i=index(line, ',')
|
||||||
|
if (i .eq. 0) goto 96 ! illegal stdhdr
|
||||||
|
j=index(line(i+1:), ',')
|
||||||
|
if (j .eq. 0) goto 96 ! illegal stdhdr
|
||||||
|
|
||||||
|
read(line(i+j+1:), *, err=96, end=96) unit, ymax, coef
|
||||||
|
stype=stdtype(stdcurv)
|
||||||
|
! if (range .lt. 0) then
|
||||||
|
! range=stdrange(stdcurv)
|
||||||
|
! end if
|
||||||
|
xmax=0
|
||||||
|
excit=0
|
||||||
|
tlim=0
|
||||||
|
goto 100
|
||||||
|
endif
|
||||||
|
if (line(5:) .ne. ' ') then
|
||||||
|
call lsc_error(lin, 'missing "="')
|
||||||
|
goto 101
|
||||||
|
end if
|
||||||
|
! user curve
|
||||||
|
if (unit .eq. 0) call lsc_error(lin, 'missing unit')
|
||||||
|
if (stype .eq. 0) then
|
||||||
|
if (excit .le. 0) call lsc_error(lin, 'missing excitation')
|
||||||
|
if (range .lt. 0) call lsc_error(lin, 'missing range')
|
||||||
|
else
|
||||||
|
if (excit .eq. 0) excit=defe(stype)
|
||||||
|
endif
|
||||||
|
3 np=np+1
|
||||||
|
read(1,'(a)',err=98,end=98) line
|
||||||
|
lin=lin+1
|
||||||
|
if (line .eq. ' ') goto 9
|
||||||
|
read(line, *, err=94, end=94) x(np), y(np)
|
||||||
|
goto 3
|
||||||
|
|
||||||
|
|
||||||
|
92 call lsc_error(lin,'illegal tlim')
|
||||||
|
goto 1
|
||||||
|
93 call lsc_error(lin,'illegal range')
|
||||||
|
goto 1
|
||||||
|
94 call lsc_error(lin,'illegal datapoint')
|
||||||
|
goto 101
|
||||||
|
95 call lsc_error(lin,'illegal table no')
|
||||||
|
goto 1
|
||||||
|
96 stop 'internal error: illegal stdhdr'
|
||||||
|
97 if (.not. first) then
|
||||||
|
call lsc_error(lin,'unexpected end of file')
|
||||||
|
endif
|
||||||
|
lin=-1
|
||||||
|
RETURN
|
||||||
|
98 eof=.true.
|
||||||
|
|
||||||
|
9 np=np-1 ! point (np) is not valid
|
||||||
|
|
||||||
|
if (np .lt. 2) call lsc_error(lin+np, 'not enough data points')
|
||||||
|
if (x(np) .lt. x(1)) then ! inverse order
|
||||||
|
j=np
|
||||||
|
do i=1,np/2
|
||||||
|
ex=x(i)
|
||||||
|
ey=y(i)
|
||||||
|
x(i)=x(j)
|
||||||
|
y(i)=y(j)
|
||||||
|
x(j)=ex
|
||||||
|
y(j)=ey
|
||||||
|
j=j-1
|
||||||
|
enddo
|
||||||
|
inverted=.true.
|
||||||
|
else
|
||||||
|
inverted=.false.
|
||||||
|
endif
|
||||||
|
do i=2,np
|
||||||
|
if (x(i) .le. x(i-1)) then
|
||||||
|
j=i
|
||||||
|
if (inverted) j=np-i+1
|
||||||
|
call lsc_error(lin+j, 'table not ordered')
|
||||||
|
goto 101
|
||||||
|
endif
|
||||||
|
enddo
|
||||||
|
xmax=x(np)
|
||||||
|
if (y(np) .lt. y(1)) then
|
||||||
|
coef=1
|
||||||
|
do i=2,np
|
||||||
|
if (y(i) .ge. y(i-1)) then
|
||||||
|
j=i
|
||||||
|
if (inverted) j=np-i+1
|
||||||
|
call lsc_error(lin+j, 'table not ordered')
|
||||||
|
goto 101
|
||||||
|
endif
|
||||||
|
enddo
|
||||||
|
ymax=y(1)
|
||||||
|
else
|
||||||
|
coef=2
|
||||||
|
do i=2,np
|
||||||
|
if (y(i) .le. y(i-1)) then
|
||||||
|
j=i
|
||||||
|
if (inverted) j=np-i+1
|
||||||
|
call lsc_error(lin+j, 'table not ordered')
|
||||||
|
goto 101
|
||||||
|
endif
|
||||||
|
enddo
|
||||||
|
ymax=y(np)
|
||||||
|
endif
|
||||||
|
101 continue
|
||||||
|
do i=1,np
|
||||||
|
if (x(i) .eq. 0.0) then
|
||||||
|
j=i
|
||||||
|
if (inverted) j=np-i+1
|
||||||
|
call lsc_error(lin+j, 'illegal sensor value')
|
||||||
|
endif
|
||||||
|
if (y(i) .le. 0.0) then
|
||||||
|
j=i
|
||||||
|
if (inverted) j=np-i+1
|
||||||
|
call lsc_error(lin+j, 'illegal temperature')
|
||||||
|
endif
|
||||||
|
enddo
|
||||||
|
if (errstat .gt. 1) goto 999
|
||||||
|
|
||||||
|
sum=0
|
||||||
|
sum1=0
|
||||||
|
sum2=0
|
||||||
|
mum=0
|
||||||
|
mum1=0
|
||||||
|
mum2=0
|
||||||
|
do i=2,np-1
|
||||||
|
xi=x(i)
|
||||||
|
x1=x(i-1)
|
||||||
|
x2=x(i+1)
|
||||||
|
yi=log(y(i))
|
||||||
|
y1=y(i-1)
|
||||||
|
y2=y(i+1)
|
||||||
|
d=abs(yi-log(y1+(xi-x1)/(x2-x1)*(y2-y1)))
|
||||||
|
sum=sum+d*d
|
||||||
|
if (d .gt. mum) then
|
||||||
|
mum=d
|
||||||
|
at=y(i)
|
||||||
|
endif
|
||||||
|
xi=log(abs(xi))
|
||||||
|
x1=log(abs(x1))
|
||||||
|
x2=log(abs(x2))
|
||||||
|
d=abs(yi-log(y1+(xi-x1)/(x2-x1)*(y2-y1)))
|
||||||
|
sum1=sum1+d*d
|
||||||
|
if (d .gt. mum1) then
|
||||||
|
mum1=d
|
||||||
|
at1=y(i)
|
||||||
|
endif
|
||||||
|
y1=log(y1)
|
||||||
|
y2=log(y2)
|
||||||
|
d=abs(yi-(y1+(xi-x1)/(x2-x1)*(y2-y1)))
|
||||||
|
sum2=sum2+d*d
|
||||||
|
if (d .gt. mum2) then
|
||||||
|
mum2=d
|
||||||
|
at2=y(i)
|
||||||
|
endif
|
||||||
|
enddo
|
||||||
|
if (np .gt. 2) then
|
||||||
|
sum=sqrt(sum/(np-1))*25
|
||||||
|
sum1=sqrt(sum1/(np-1))*25
|
||||||
|
sum2=sqrt(sum2/(np-1))*25
|
||||||
|
|
||||||
|
if (verbose) then
|
||||||
|
print '(x,a)','Interpolation accuracy mean worst at'
|
||||||
|
print '(13x,a,3(f8.2,a))','linear ',sum, '%',mum *25,'%',at,' K'
|
||||||
|
print '(13x,a,3(f8.2,a))','log/lin ',sum1,'%',mum1*25,'%',at1,' K'
|
||||||
|
print '(13x,a,3(f8.2,a))','log/log ',sum2,'%',mum2*25,'%',at2,' K'
|
||||||
|
endif
|
||||||
|
|
||||||
|
if (unit .eq. 3) then
|
||||||
|
sum1=(sum1/sum)**2+(mum1/mum)**2
|
||||||
|
sum2=(sum2/sum)**2+(mum2/mum)**2
|
||||||
|
if (form .eq. 0 .and. (sum1 .lt. 1.0 .or. sum2 .lt. 1.0)
|
||||||
|
1 .or. form .gt. 3) then
|
||||||
|
if (form .eq. 0 .and. sum2 .lt. sum1 .or. form .eq. 5) then
|
||||||
|
unit=5
|
||||||
|
do i=1,np
|
||||||
|
y(i)=log10(y(i))
|
||||||
|
enddo
|
||||||
|
else
|
||||||
|
unit=4
|
||||||
|
endif
|
||||||
|
do i=1,np
|
||||||
|
x(i)=log10(x(i))
|
||||||
|
enddo
|
||||||
|
endif
|
||||||
|
else
|
||||||
|
if (form .gt. 3 .and. verbose)
|
||||||
|
1 print *,'FORM ignored (not unit Ohm)'
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
100 continue
|
||||||
|
|
||||||
|
if (unit .eq. 1) then ! check for mV / V consistency
|
||||||
|
if (xmax .gt. 990) then
|
||||||
|
unit=2
|
||||||
|
do i=1,np
|
||||||
|
x(i)=x(i)/1000.0
|
||||||
|
enddo
|
||||||
|
endif
|
||||||
|
xmax=xmax/1000.0
|
||||||
|
range=range/1000.0
|
||||||
|
elseif (unit .eq. 2) then
|
||||||
|
if (xmax .lt. 0.5) then
|
||||||
|
unit=1
|
||||||
|
do i=1,np
|
||||||
|
x(i)=x(i)*1000.0
|
||||||
|
enddo
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
if (range .eq. 0) range=xmax
|
||||||
|
if (tlim .eq. 0 .or. tlim .gt. ymax) tlim=ymax
|
||||||
|
irange=0
|
||||||
|
if (range .gt. 0) then
|
||||||
|
if (unit .ge. 3) then ! Ohm
|
||||||
|
curr=amps(excit)
|
||||||
|
rl=range*curr ! convert Ohm to V
|
||||||
|
if (rl .gt. 5.0) then
|
||||||
|
! print *,'Warning: maximum range exceeded: '
|
||||||
|
! 1 , range,'>',5/curr,' Ohm',char(7)
|
||||||
|
! errstat=max(errstat,1)
|
||||||
|
irange=12
|
||||||
|
endif
|
||||||
|
else
|
||||||
|
rl=range ! V
|
||||||
|
endif
|
||||||
|
if (irange .eq. 0) then
|
||||||
|
if (stype.eq.12) then
|
||||||
|
j=6
|
||||||
|
else
|
||||||
|
j=nvolts
|
||||||
|
end if
|
||||||
|
do i=1,j
|
||||||
|
if (rl .le. volts(i)) then
|
||||||
|
irange=i
|
||||||
|
goto 150
|
||||||
|
endif
|
||||||
|
enddo
|
||||||
|
! print *,'Warning: maximum range exceeded: ', range,' > ',volts(j),' V',char(7)
|
||||||
|
! errstat=max(errstat,1)
|
||||||
|
irange=j
|
||||||
|
150 continue
|
||||||
|
if (excit .eq. 11) then ! 10 mV excit -> min. 10 mV range
|
||||||
|
if (irange .lt. 4) irange=4
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
else
|
||||||
|
irange=defr(stype)
|
||||||
|
range=xmax
|
||||||
|
endif
|
||||||
|
if (stdcurv.eq.0) then
|
||||||
|
if (unit .ge. 3) then
|
||||||
|
if (range*amps(excit) .gt. volts(irange)) then
|
||||||
|
print *,'Warning: max. range exceeded: '
|
||||||
|
1 ,range,' > ',volts(irange)/amps(excit),' Ohm',char(7)
|
||||||
|
errstat=max(errstat,1)
|
||||||
|
endif
|
||||||
|
else if (range .gt. volts(irange)) then
|
||||||
|
print *,'Warning: max. range exceeded: '
|
||||||
|
1 ,range,' > ',volts(irange), ' V',char(7)
|
||||||
|
errstat=max(errstat,1)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
if (stype .gt. 0) then
|
||||||
|
if (excit .le. 0) excit=defe(stype)
|
||||||
|
if (irange .eq. 0) irange=defr(stype)
|
||||||
|
endif
|
||||||
|
if (verbose) then
|
||||||
|
print *,'Sensor type: ',types(stype)
|
||||||
|
print *,'Excitation: ',excits(excit)
|
||||||
|
if (unit .eq. 1) then
|
||||||
|
print *,'Sensor Range: ',volts(irange)*1000,' mV'
|
||||||
|
elseif (unit .eq. 2) then
|
||||||
|
print *,'Sensor Range: ',volts(irange),' V'
|
||||||
|
else
|
||||||
|
print *,'Sensor Range: ',volts(irange)/amps(excit),' Ohm'
|
||||||
|
if (unit .eq. 5) then
|
||||||
|
print *,'table double logarithmic'
|
||||||
|
elseif (unit .eq. 4) then
|
||||||
|
print *,'table logarithmic'
|
||||||
|
else
|
||||||
|
print *,'table linear'
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
if (coef .eq. 1) then
|
||||||
|
print *,'negative characteristic'
|
||||||
|
else
|
||||||
|
print *,'positive characteristic'
|
||||||
|
endif
|
||||||
|
print *
|
||||||
|
endif
|
||||||
|
|
||||||
|
if (stype .eq. 0) then
|
||||||
|
if (unit .ge. 3) then
|
||||||
|
iunit=2
|
||||||
|
else
|
||||||
|
iunit=1
|
||||||
|
endif
|
||||||
|
else
|
||||||
|
if (unit .le. 2) then ! mV / V
|
||||||
|
iunit=1
|
||||||
|
else ! Ohm
|
||||||
|
iunit=2
|
||||||
|
endif
|
||||||
|
if (iunit .ne. defu(stype) .or.
|
||||||
|
1 coef .ne. defc(stype) .or.
|
||||||
|
1 excit .ne. defe(stype) .or.
|
||||||
|
1 irange.ne. defr(stype)) then
|
||||||
|
if (stype .ne. 12) stype=0
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
if (stype .eq. 12) then
|
||||||
|
l=5
|
||||||
|
write (line(1:l), '(a,i1)') ',,,,',max(0,irange-5)
|
||||||
|
elseif (stype .eq. 0) then
|
||||||
|
l=14
|
||||||
|
write (line(1:l), '(i2,4(a,i2.0))')
|
||||||
|
1 stype,',',iunit,',',coef,',',excit,',',irange
|
||||||
|
else
|
||||||
|
l=2
|
||||||
|
write(line(1:l), '(i2)') stype
|
||||||
|
endif
|
||||||
|
|
||||||
|
call str_substitute(intype, line(1:l), ' ', char(0))
|
||||||
|
call str_trim(intype, intype, li)
|
||||||
|
|
||||||
|
if (tlim .gt. 1500) tlim=1500
|
||||||
|
if (tlim .lt. 0) tlim=0
|
||||||
|
|
||||||
|
if (stdcurv.eq.0) then
|
||||||
|
! calculate crc of table
|
||||||
|
crc=0
|
||||||
|
do i=1,np
|
||||||
|
call pack(line, l, x(i), y(i), i-1, 1)
|
||||||
|
call str_crc(crc, line(1:l))
|
||||||
|
enddo
|
||||||
|
call str_crc_comp(crc, crcmp)
|
||||||
|
write (header, "(a,x,a,',',a,',',i1,',',f8.3,',',i1)")
|
||||||
|
1 name(1:11), crcmp,sensor,unit,tlim,coef
|
||||||
|
else
|
||||||
|
crc=0
|
||||||
|
header=stdhdr(stdcurv)
|
||||||
|
endif
|
||||||
|
|
||||||
|
! compare with old file
|
||||||
|
call str_trim(filnam, sensor, l)
|
||||||
|
call str_lowcase(filnam, filnam)
|
||||||
|
filnam(l+1:)='.crv'
|
||||||
|
if (path(1:lp) .ne. ' ') then
|
||||||
|
filnam=path(1:lp)//filnam
|
||||||
|
endif
|
||||||
|
open(unit=2, file=filnam, status='old', iostat=iostat)
|
||||||
|
if (iostat .ne. 0) goto 198
|
||||||
|
read(2, '(a)',end=199) old
|
||||||
|
if (old .ne. header) goto 199
|
||||||
|
read(2, '(a)', end=199) old
|
||||||
|
if (old .ne. intype) goto 199
|
||||||
|
if (stdcurv .ne. 0) then
|
||||||
|
write(line, '(a, i2)') '$',stdcurv
|
||||||
|
read(2, '(a)', end=199) old
|
||||||
|
if (line .ne. old) goto 199
|
||||||
|
read(2, '(a)', end=197) old ! goto end (o.k.) if no more line
|
||||||
|
goto 199
|
||||||
|
endif
|
||||||
|
do i=1,np,ncolumn
|
||||||
|
read(2, '(a)', end=199) old
|
||||||
|
call pack(line, l, x(i), y(i), i-1, min(ncolumn,np-i+1))
|
||||||
|
if (line .ne. old) goto 199
|
||||||
|
enddo
|
||||||
|
read(2, '(a)', end=199) old
|
||||||
|
call pack(line, l, 0.0, 0.0, np, 1)
|
||||||
|
if (line .ne. old) goto 199
|
||||||
|
read(2, '(a)', end=197) old ! goto end (o.k.) if no more line
|
||||||
|
goto 199
|
||||||
|
197 close(2)
|
||||||
|
if (verbose) print *,'curve file has not changed: ',filnam
|
||||||
|
goto 200
|
||||||
|
! goto 999
|
||||||
|
|
||||||
|
198 if (verbose) print *,'create new curve file: ',filnam
|
||||||
|
nlist=nlist+1
|
||||||
|
list(nlist)='created '//filnam
|
||||||
|
goto 200
|
||||||
|
|
||||||
|
199 close(2)
|
||||||
|
if (verbose) print *,'modify curve file: ',filnam
|
||||||
|
nlist=nlist+1
|
||||||
|
list(nlist)='modified '//filnam
|
||||||
|
200 continue
|
||||||
|
open(unit=2, file=filnam, status='unknown', iostat=iostat)
|
||||||
|
if (iostat .ne. 0) then
|
||||||
|
call str_trim(filnam, filnam, l)
|
||||||
|
print *,'can not open ',filnam(1:l)
|
||||||
|
nlist=nlist-1
|
||||||
|
lin=-1
|
||||||
|
return
|
||||||
|
endif
|
||||||
|
call str_trim(header, header, l)
|
||||||
|
write(2, '(a)') header(1:l)
|
||||||
|
write(2, '(a)') intype(1:li)
|
||||||
|
if (stdcurv .ne. 0) then
|
||||||
|
write(2, '(a,i2)') '$',stdcurv
|
||||||
|
else
|
||||||
|
do i=1,np,ncolumn
|
||||||
|
call pack(line, l, x(i), y(i), i-1, min(ncolumn,np-i+1))
|
||||||
|
write(2,'(a)') line(1:l)
|
||||||
|
enddo
|
||||||
|
call pack(line, l, 0.0, 0.0, np, 1)
|
||||||
|
write(2,'(a)') line(1:l)
|
||||||
|
endif
|
||||||
|
close(2)
|
||||||
|
999 continue
|
||||||
|
if (errstat .gt. 0) then
|
||||||
|
if (name.eq.' ') name='<unknown>'
|
||||||
|
nlist=nlist+1
|
||||||
|
if (errstat .gt. 1) then
|
||||||
|
list(nlist)='error in '//file(1:lf)//', curve '//name
|
||||||
|
if (verbose) print *,'no curve file written'
|
||||||
|
lin=-1
|
||||||
|
else
|
||||||
|
list(nlist)='warning in '//file(1:lf)//', curve '//name
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
if (eof) lin=-1
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
integer function lsc_getno(list, n, name)
|
||||||
|
|
||||||
|
integer n
|
||||||
|
character list(n)*(*), name*(*)
|
||||||
|
character str*32
|
||||||
|
|
||||||
|
integer i,l
|
||||||
|
|
||||||
|
call str_trim(name, name, l)
|
||||||
|
l=min(l,len(str))
|
||||||
|
do i=1,n
|
||||||
|
call str_upcase(str(1:l), list(i))
|
||||||
|
if (name(1:l) .eq. str(1:l)) then
|
||||||
|
lsc_getno=i
|
||||||
|
RETURN
|
||||||
|
endif
|
||||||
|
enddo
|
||||||
|
lsc_getno=0
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
subroutine lsc_errinit(lunit)
|
||||||
|
|
||||||
|
include 'conv.inc'
|
||||||
|
|
||||||
|
integer lunit
|
||||||
|
|
||||||
|
lun=lunit
|
||||||
|
pos=0
|
||||||
|
errstat=0
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
subroutine lsc_error(lin, text)
|
||||||
|
|
||||||
|
include 'conv.inc'
|
||||||
|
|
||||||
|
integer lin
|
||||||
|
character text*(*)
|
||||||
|
|
||||||
|
integer i,l
|
||||||
|
character line*132
|
||||||
|
|
||||||
|
if (pos .eq. 0) then
|
||||||
|
print *
|
||||||
|
endif
|
||||||
|
if (lin .gt. pos) then
|
||||||
|
rewind lun
|
||||||
|
do i=1,lin-1
|
||||||
|
read(lun, '(a)', end=8) line
|
||||||
|
call str_trim(line, line, l)
|
||||||
|
if (i .gt. max(pos,lin-3)) then
|
||||||
|
print '(5x,a)',line(1:l)
|
||||||
|
endif
|
||||||
|
enddo
|
||||||
|
read(lun, '(a)', end=8) line
|
||||||
|
call str_trim(line, line, l)
|
||||||
|
print '(x,2a)','>>> ',line(1:l)
|
||||||
|
8 pos=lin
|
||||||
|
errstat=2
|
||||||
|
endif
|
||||||
|
|
||||||
|
9 print '(x,a)', text
|
||||||
|
end
|
31
tecs/didi
31
tecs/didi
@ -4,24 +4,34 @@ set what="$1"
|
|||||||
set where="$2"
|
set where="$2"
|
||||||
|
|
||||||
set destlist=( type@osf1 \
|
set destlist=( type@osf1 \
|
||||||
AMOR@lnsa14:bin/ DMC@lnsa05:bin/ FOCUS@lnsa16:bin/ \
|
AMOR@lnsa14:tecs/ FOCUS@lnsa16:tecs/ TRICS@lnsa18:tecs/ \
|
||||||
HRPT@lnsa11:bin/ TRICS@lnsa18:bin/ \
|
lnsg@lnsa15:tecs/ \
|
||||||
lnslib@lnsa15:bin/ \
|
alpha=/afs/psi.ch/project/sinq/tru64/stow/tecs/bin/ \
|
||||||
type@linux \
|
type@linux \
|
||||||
zolliker@llc3:/afs/psi.ch/project/sinq/linux/bin/ \
|
linux=/afs/psi.ch/project/sinq/linux/stow/tecs/bin/ \
|
||||||
TASP@pc4478:tasp_sics/ \
|
TASP@pc4478:tecs/ DMC@pc4629:tecs/ HRPT@hrpt:tecs/ \
|
||||||
TOPSI@pc4120:topsi_sics/ SANS@pc3965:sans_sics/ SANS2@sans2:sans2_sics/ \
|
MORPHEUS@pc4120:tecs/ SANS@pc3965:tecs/ SANS2@sans2:tecs/ \
|
||||||
|
type@darwin \
|
||||||
|
macosx=/afs/psi.ch/project/sinq/mac_os/stow/tecs/bin/ \
|
||||||
)
|
)
|
||||||
|
|
||||||
set dests=""
|
set dests=""
|
||||||
set destl=""
|
set destl=""
|
||||||
foreach dest ($destlist)
|
foreach dest ($destlist)
|
||||||
|
set ext="${dest:s/=/ /}"
|
||||||
|
set ext=($ext)
|
||||||
|
if ("$ext" != "$dest") then
|
||||||
|
set dest="$ext[2]"
|
||||||
|
set d="$ext[1]"
|
||||||
|
else
|
||||||
|
set d=""
|
||||||
|
endif
|
||||||
set ext=${dest:s/@/ /}
|
set ext=${dest:s/@/ /}
|
||||||
set ext=($ext)
|
set ext=($ext)
|
||||||
if ("$ext[1]" == type) then
|
if ("$ext[1]" == type) then
|
||||||
set type=$ext[2]
|
set type=$ext[2]
|
||||||
else
|
else
|
||||||
set d=$ext[1]
|
if ("$d" == "") set d=$ext[1]
|
||||||
if ($?type) then
|
if ($?type) then
|
||||||
set t_$d=$type
|
set t_$d=$type
|
||||||
else
|
else
|
||||||
@ -29,7 +39,7 @@ foreach dest ($destlist)
|
|||||||
exit
|
exit
|
||||||
endif
|
endif
|
||||||
set d_$d=$dest
|
set d_$d=$dest
|
||||||
set dests=($dests $ext[1])
|
set dests=($dests $d)
|
||||||
endif
|
endif
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -67,15 +77,16 @@ foreach dest ($where)
|
|||||||
alias get 'set d=$'"d_$dest;"'set t=$'"t_$dest"
|
alias get 'set d=$'"d_$dest;"'set t=$'"t_$dest"
|
||||||
get
|
get
|
||||||
foreach item ($what)
|
foreach item ($what)
|
||||||
|
echo $item D $d T $t
|
||||||
if ($item == cfg) then
|
if ($item == cfg) then
|
||||||
if ($makeit) then
|
if ($makeit) then
|
||||||
make config
|
make config
|
||||||
set makeit=0
|
set makeit=0
|
||||||
endif
|
endif
|
||||||
echo tecs $d
|
echo tecs $d
|
||||||
rsync -e ssh -rCtv --delete-excluded $obj/tecs $d
|
rsync -e ssh -rCtv --delete-excluded $obj/cfg $d
|
||||||
else if ("$t" == "$OSTYPE") then
|
else if ("$t" == "$OSTYPE") then
|
||||||
echo $item $d
|
echo $item to $d
|
||||||
rsync -e ssh -vt $obj/$item $d
|
rsync -e ssh -vt $obj/$item $d
|
||||||
endif
|
endif
|
||||||
end
|
end
|
||||||
|
5
tecs/inp/apd.cfg
Normal file
5
tecs/inp/apd.cfg
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
sensA.type=m sensA.curve=mz020124
|
||||||
|
sensB.type=s sensB.curve=r10409
|
||||||
|
dev="APD closed cycle refrigerator (TriCS)"
|
||||||
|
tlimit=310 resist=40 maxPower=16
|
||||||
|
prop=15 int=10 deriv=0
|
2
tecs/inp/apdl.cfg
Normal file
2
tecs/inp/apdl.cfg
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
sensC.type=x
|
||||||
|
dev="APD auxilliary sensor"
|
109
tecs/inp/c020415.inp
Normal file
109
tecs/inp/c020415.inp
Normal file
@ -0,0 +1,109 @@
|
|||||||
|
sens=c020415
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=325 ! setpoint limit (automatic if omitted)
|
||||||
|
type=C ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
form=loglog
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
87 278.58
|
||||||
|
87.7 273.38
|
||||||
|
88.4 267.75
|
||||||
|
89.1 261.75
|
||||||
|
89.9 254.55
|
||||||
|
90.7 247.11
|
||||||
|
91.6 238.55
|
||||||
|
92.6 228.96
|
||||||
|
93.7 218.46
|
||||||
|
95 206.33
|
||||||
|
96.6 192.03
|
||||||
|
98.9 173.02
|
||||||
|
104 138.05
|
||||||
|
106.2 125.83
|
||||||
|
108.4 115.1
|
||||||
|
110.6 105.67
|
||||||
|
112.8 97.379
|
||||||
|
115 90.068
|
||||||
|
117.2 83.601
|
||||||
|
119.4 77.863
|
||||||
|
121.7 72.535
|
||||||
|
124.1 67.603
|
||||||
|
126.6 63.049
|
||||||
|
129.1 59.004
|
||||||
|
131.7 55.261
|
||||||
|
134.4 51.8
|
||||||
|
137.3 48.498
|
||||||
|
140.3 45.466
|
||||||
|
143.4 42.683
|
||||||
|
147 39.828
|
||||||
|
150 37.712
|
||||||
|
154 35.206
|
||||||
|
158 33.003
|
||||||
|
162 31.056
|
||||||
|
166 29.324
|
||||||
|
170 27.775
|
||||||
|
175 26.057
|
||||||
|
180 24.543
|
||||||
|
185 23.201
|
||||||
|
191 21.781
|
||||||
|
197 20.532
|
||||||
|
203 19.429
|
||||||
|
210 18.293
|
||||||
|
217 17.293
|
||||||
|
225 16.29
|
||||||
|
233 15.409
|
||||||
|
242 14.539
|
||||||
|
251 13.775
|
||||||
|
261 13.028
|
||||||
|
272 12.31
|
||||||
|
284 11.628
|
||||||
|
297 10.985
|
||||||
|
311 10.384
|
||||||
|
326 9.8244
|
||||||
|
342 9.3062
|
||||||
|
360 8.8014
|
||||||
|
379 8.3407
|
||||||
|
400 7.9007
|
||||||
|
423 7.4854
|
||||||
|
448 7.0969
|
||||||
|
475 6.736
|
||||||
|
505 6.3915
|
||||||
|
540 6.0487
|
||||||
|
580 5.7176
|
||||||
|
620 5.4367
|
||||||
|
670 5.1397
|
||||||
|
720 4.8893
|
||||||
|
780 4.6356
|
||||||
|
840 4.4212
|
||||||
|
910 4.2092
|
||||||
|
990 4.0054
|
||||||
|
1080 3.8132
|
||||||
|
1180 3.6344
|
||||||
|
1300 3.456
|
||||||
|
1440 3.2845
|
||||||
|
1600 3.1239
|
||||||
|
1780 2.9757
|
||||||
|
1990 2.8344
|
||||||
|
2240 2.6977
|
||||||
|
2530 2.5697
|
||||||
|
2900 2.4393
|
||||||
|
3300 2.3271
|
||||||
|
3800 2.2154
|
||||||
|
4400 2.1099
|
||||||
|
5100 2.0131
|
||||||
|
6000 1.916
|
||||||
|
7100 1.8247
|
||||||
|
8400 1.7416
|
||||||
|
10000 1.663
|
||||||
|
12000 1.5879
|
||||||
|
14600 1.5142
|
||||||
|
18000 1.4427
|
||||||
|
22000 1.3801
|
||||||
|
27000 1.3216
|
||||||
|
34000 1.2614
|
||||||
|
43000 1.2054
|
||||||
|
55000 1.1518
|
||||||
|
71000 1.1009
|
||||||
|
93000 1.0519
|
||||||
|
124000 1.0041
|
||||||
|
300000 0.75
|
||||||
|
|
||||||
|
|
34
tecs/inp/c030307.inp
Normal file
34
tecs/inp/c030307.inp
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
sens=c030307
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=325 ! setpoint limit (automatic if omitted)
|
||||||
|
type=C ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
100000 0.42
|
||||||
|
15000 1.05
|
||||||
|
8000 1.42
|
||||||
|
4000 1.99
|
||||||
|
2000 2.77
|
||||||
|
1600 3.1
|
||||||
|
1400 3.32
|
||||||
|
1200 3.61
|
||||||
|
1000 4.01
|
||||||
|
900 4.28
|
||||||
|
800 4.61
|
||||||
|
700 5.05
|
||||||
|
600 5.64
|
||||||
|
500 6.5
|
||||||
|
400 7.96
|
||||||
|
300 10.81
|
||||||
|
265 12.68
|
||||||
|
228 15.77
|
||||||
|
206 18.96
|
||||||
|
191 21.67
|
||||||
|
180 24.48
|
||||||
|
171 27.3
|
||||||
|
154 35.2
|
||||||
|
142 45
|
||||||
|
134 60
|
||||||
|
130 70
|
||||||
|
90 310
|
||||||
|
|
||||||
|
|
107
tecs/inp/c030311.inp
Normal file
107
tecs/inp/c030311.inp
Normal file
@ -0,0 +1,107 @@
|
|||||||
|
sens=c030311
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=325 ! setpoint limit (automatic if omitted)
|
||||||
|
type=C ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
94 331.07
|
||||||
|
95.6 301.46
|
||||||
|
98.2 258.68
|
||||||
|
100.3 229.17
|
||||||
|
102.1 207.24
|
||||||
|
103.8 189.07
|
||||||
|
105.4 173.97
|
||||||
|
107 160.58
|
||||||
|
108.6 148.68
|
||||||
|
110.2 138.09
|
||||||
|
111.9 128.07
|
||||||
|
113.6 119.17
|
||||||
|
115.3 111.22
|
||||||
|
117.1 103.71
|
||||||
|
118.9 97.013
|
||||||
|
120.8 90.694
|
||||||
|
122.8 84.763
|
||||||
|
124.8 79.468
|
||||||
|
126.9 74.498
|
||||||
|
129.1 69.849
|
||||||
|
131.4 65.511
|
||||||
|
133.8 61.473
|
||||||
|
136.3 57.722
|
||||||
|
138.9 54.241
|
||||||
|
141.7 50.902
|
||||||
|
144.6 47.825
|
||||||
|
147.6 44.991
|
||||||
|
151 42.141
|
||||||
|
154 39.899
|
||||||
|
158 37.247
|
||||||
|
162 34.917
|
||||||
|
166 32.859
|
||||||
|
170 31.029
|
||||||
|
174 29.394
|
||||||
|
179 27.58
|
||||||
|
184 25.982
|
||||||
|
189 24.565
|
||||||
|
195 23.065
|
||||||
|
201 21.747
|
||||||
|
207 20.581
|
||||||
|
214 19.38
|
||||||
|
221 18.324
|
||||||
|
229 17.263
|
||||||
|
237 16.331
|
||||||
|
246 15.411
|
||||||
|
255 14.602
|
||||||
|
265 13.812
|
||||||
|
276 13.051
|
||||||
|
288 12.328
|
||||||
|
301 11.646
|
||||||
|
315 11.009
|
||||||
|
330 10.416
|
||||||
|
346 9.8657
|
||||||
|
363 9.3576
|
||||||
|
382 8.8648
|
||||||
|
403 8.3941
|
||||||
|
426 7.9501
|
||||||
|
451 7.5349
|
||||||
|
478 7.1492
|
||||||
|
508 6.7812
|
||||||
|
540 6.4443
|
||||||
|
580 6.0862
|
||||||
|
620 5.7828
|
||||||
|
660 5.5221
|
||||||
|
710 5.2433
|
||||||
|
770 4.9621
|
||||||
|
830 4.7255
|
||||||
|
900 4.4923
|
||||||
|
980 4.2688
|
||||||
|
1070 4.0588
|
||||||
|
1170 3.8641
|
||||||
|
1280 3.685
|
||||||
|
1410 3.5088
|
||||||
|
1560 3.3408
|
||||||
|
1730 3.184
|
||||||
|
1930 3.0326
|
||||||
|
2160 2.8904
|
||||||
|
2430 2.7546
|
||||||
|
2700 2.6432
|
||||||
|
3100 2.5095
|
||||||
|
3500 2.4024
|
||||||
|
4000 2.2943
|
||||||
|
4600 2.1908
|
||||||
|
5300 2.0948
|
||||||
|
6200 1.9976
|
||||||
|
7300 1.9054
|
||||||
|
8600 1.8209
|
||||||
|
10300 1.736
|
||||||
|
12400 1.6564
|
||||||
|
15000 1.582
|
||||||
|
18000 1.5166
|
||||||
|
22000 1.4505
|
||||||
|
27000 1.3888
|
||||||
|
34000 1.3252
|
||||||
|
43000 1.2661
|
||||||
|
55000 1.2096
|
||||||
|
71000 1.156
|
||||||
|
93000 1.1043
|
||||||
|
123000 1.0554
|
||||||
|
170000 1.0039
|
||||||
|
|
||||||
|
|
74
tecs/inp/c1.inp
Normal file
74
tecs/inp/c1.inp
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
sens=c1
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=325 ! setpoint limit (automatic if omitted)
|
||||||
|
type=C ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=100uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
range=333333 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
999999 1.00
|
||||||
|
272100 1.03
|
||||||
|
172977 1.12
|
||||||
|
112093 1.21
|
||||||
|
74662 1.31
|
||||||
|
50854.6 1.42
|
||||||
|
35305.6 1.53
|
||||||
|
25003.3 1.66
|
||||||
|
18090 1.80
|
||||||
|
13356.3 1.94
|
||||||
|
10053.4 2.10
|
||||||
|
7697.32 2.28
|
||||||
|
5986.53 2.47
|
||||||
|
4724.73 2.67
|
||||||
|
3784.47 2.89
|
||||||
|
3069.36 3.13
|
||||||
|
2518.99 3.39
|
||||||
|
2091.39 3.67
|
||||||
|
1755.38 3.97
|
||||||
|
1487.08 4.30
|
||||||
|
1273.44 4.66
|
||||||
|
1101.81 5.04
|
||||||
|
960.139 5.46
|
||||||
|
844.434 5.91
|
||||||
|
747.186 6.40
|
||||||
|
665.698 6.93
|
||||||
|
596.693 7.50
|
||||||
|
539.771 8.12
|
||||||
|
490.76 8.79
|
||||||
|
448.006 9.52
|
||||||
|
412.762 10.30
|
||||||
|
380.541 11.15
|
||||||
|
352.62 12.08
|
||||||
|
328.321 13.07
|
||||||
|
306.25 14.16
|
||||||
|
288.286 15.32
|
||||||
|
271.424 16.59
|
||||||
|
256.195 17.96
|
||||||
|
242.787 19.45
|
||||||
|
230.54 21.05
|
||||||
|
219.532 22.79
|
||||||
|
209.575 24.68
|
||||||
|
200.383 26.72
|
||||||
|
192.065 28.93
|
||||||
|
184.48 31.32
|
||||||
|
177.432 33.91
|
||||||
|
171.256 36.71
|
||||||
|
165.012 39.74
|
||||||
|
159.59 43.03
|
||||||
|
154.324 46.58
|
||||||
|
149.365 50.43
|
||||||
|
144.78 54.60
|
||||||
|
139.937 60.00
|
||||||
|
133.722 68.50
|
||||||
|
128.791 77.30
|
||||||
|
123.897 88.60
|
||||||
|
119.039 103.50
|
||||||
|
114.217 124.20
|
||||||
|
109.43 154.70
|
||||||
|
107.05 176.00
|
||||||
|
104.678 203.80
|
||||||
|
102.316 240.90
|
||||||
|
100.237 287.70
|
||||||
|
99.6953 300.00
|
||||||
|
90 310
|
||||||
|
|
||||||
|
|
87
tecs/inp/c12900.inp
Normal file
87
tecs/inp/c12900.inp
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
sens=c12900
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
type=C ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
range=800000
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
1012550 1.20497
|
||||||
|
546701 1.30399
|
||||||
|
312268 1.40162
|
||||||
|
114040 1.60623
|
||||||
|
51444 1.80617
|
||||||
|
26719.2 2.00576
|
||||||
|
15435.5 2.20444
|
||||||
|
9602.53 2.40494
|
||||||
|
6397.94 2.60259
|
||||||
|
4489.76 2.79906
|
||||||
|
3219.32 3.00654
|
||||||
|
2461.2 3.19842
|
||||||
|
1897.64 3.40336
|
||||||
|
1502.24 3.6079
|
||||||
|
1230.54 3.80022
|
||||||
|
1012.12 4.00621
|
||||||
|
841.192 4.22067
|
||||||
|
637.469 4.58241
|
||||||
|
489.918 4.97865
|
||||||
|
367.931 5.4844
|
||||||
|
264.075 6.1965
|
||||||
|
195.15 7.00194
|
||||||
|
144.285 8.00824
|
||||||
|
113.298 9.01723
|
||||||
|
92.4347 10.0564
|
||||||
|
78.2614 11.0715
|
||||||
|
67.9423 12.0828
|
||||||
|
60.1888 13.0842
|
||||||
|
54.1233 14.0857
|
||||||
|
49.3103 15.0747
|
||||||
|
45.3379 16.0757
|
||||||
|
42.0996 17.0531
|
||||||
|
39.3391 18.0384
|
||||||
|
36.9796 19.0217
|
||||||
|
34.9151 20.0177
|
||||||
|
32.9926 21.0862
|
||||||
|
30.5452 22.6981
|
||||||
|
28.6209 24.2233
|
||||||
|
26.9266 25.8078
|
||||||
|
25.4992 27.3598
|
||||||
|
24.2509 28.9385
|
||||||
|
23.0398 30.7055
|
||||||
|
21.8009 32.8076
|
||||||
|
20.3302 35.8012
|
||||||
|
19.1087 38.8327
|
||||||
|
18.0816 41.8826
|
||||||
|
17.2216 44.8952
|
||||||
|
16.4751 47.9305
|
||||||
|
16.0348 49.938
|
||||||
|
15.0984 54.8967
|
||||||
|
14.3247 59.8577
|
||||||
|
13.6715 64.8573
|
||||||
|
13.1178 69.8244
|
||||||
|
12.636 74.8078
|
||||||
|
12.2143 79.7839
|
||||||
|
11.8399 84.8244
|
||||||
|
11.5105 89.8012
|
||||||
|
11.2102 94.8438
|
||||||
|
10.942 99.8132
|
||||||
|
10.4716 109.826
|
||||||
|
10.0743 119.846
|
||||||
|
9.73462 129.833
|
||||||
|
9.43818 139.857
|
||||||
|
9.17665 149.828
|
||||||
|
8.94393 159.859
|
||||||
|
8.73457 169.862
|
||||||
|
8.54545 179.864
|
||||||
|
8.37336 189.826
|
||||||
|
8.21397 199.879
|
||||||
|
8.06779 209.858
|
||||||
|
7.93285 219.86
|
||||||
|
7.80698 229.843
|
||||||
|
7.68873 239.855
|
||||||
|
7.57774 249.851
|
||||||
|
7.47313 259.852
|
||||||
|
7.37448 269.854
|
||||||
|
7.28072 279.868
|
||||||
|
7.19198 289.881
|
||||||
|
7.10731 299.874
|
||||||
|
7.02683 309.874
|
||||||
|
|
||||||
|
|
93
tecs/inp/c17844.inp
Normal file
93
tecs/inp/c17844.inp
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
sens=c17844
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=325 ! setpoint limit (automatic if omitted)
|
||||||
|
type=C ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=300uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
range=1500000 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
1600000.000 1.1
|
||||||
|
970035.6003 1.20121
|
||||||
|
505060.7083 1.30296
|
||||||
|
338710.9339 1.3989
|
||||||
|
120001.056 1.60059
|
||||||
|
51903.02439 1.80271
|
||||||
|
14804.70375 2.20221
|
||||||
|
9145.783794 2.39764
|
||||||
|
5892.856091 2.60368
|
||||||
|
4098.343859 2.798
|
||||||
|
2949.617582 2.99639
|
||||||
|
2170.79842 3.20492
|
||||||
|
1650.889664 3.41307
|
||||||
|
1316.149683 3.60371
|
||||||
|
1062.659731 3.80091
|
||||||
|
877.1929825 3.99488
|
||||||
|
724.6376812 4.20335
|
||||||
|
465.1162791 4.77734
|
||||||
|
358.4229391 5.17319
|
||||||
|
274.7252747 5.65299
|
||||||
|
201.2072435 6.31596
|
||||||
|
150.6024096 7.06791
|
||||||
|
111.1111111 8.04676
|
||||||
|
85.17887564 9.11986
|
||||||
|
70.92198582 10.0142
|
||||||
|
59.9880024 10.982
|
||||||
|
51.25576627 12.0445
|
||||||
|
45.74565416 12.9337
|
||||||
|
41.05090312 13.8897
|
||||||
|
37.09198813 14.9045
|
||||||
|
33.99048266 15.8801
|
||||||
|
31.56565657 16.7995
|
||||||
|
29.43773918 17.7499
|
||||||
|
27.5862069 18.7256
|
||||||
|
25.96728123 19.7153
|
||||||
|
24.27184466 20.9274
|
||||||
|
22.37637055 22.5615
|
||||||
|
20.90301003 24.0999
|
||||||
|
19.5427008 25.7898
|
||||||
|
18.43657817 27.4256
|
||||||
|
17.49475157 29.0442
|
||||||
|
16.50709805 31.0254
|
||||||
|
15.64945227 33.0448
|
||||||
|
14.53911021 36.2007
|
||||||
|
13.70801919 39.0782
|
||||||
|
12.97690112 42.0868
|
||||||
|
12.39157373 44.9234
|
||||||
|
11.84553423 47.9836
|
||||||
|
11.52339249 50.031
|
||||||
|
10.84245907 55.0141
|
||||||
|
10.28806584 59.9738
|
||||||
|
9.811616954 65.062
|
||||||
|
9.409993413 70.0969
|
||||||
|
9.071117562 75.0211
|
||||||
|
8.765778401 80.058
|
||||||
|
8.494733265 85.1505
|
||||||
|
8.25968448 90.1304
|
||||||
|
8.048289738 95.0917
|
||||||
|
7.840677435 100.499
|
||||||
|
7.505817008 110.505
|
||||||
|
7.22230247 120.57
|
||||||
|
6.97934115 130.684
|
||||||
|
6.770022341 140.651
|
||||||
|
6.582411796 150.794
|
||||||
|
6.416014372 160.824
|
||||||
|
6.26605677 170.879
|
||||||
|
6.130456106 181.012
|
||||||
|
6.007810153 191.033
|
||||||
|
5.895183635 201.141
|
||||||
|
5.788376939 211.227
|
||||||
|
5.691519636 221.232
|
||||||
|
5.602554765 231.279
|
||||||
|
5.518154729 241.451
|
||||||
|
5.437442227 251.53
|
||||||
|
5.361642807 261.574
|
||||||
|
5.291285253 272.626
|
||||||
|
5.2227503 281.619
|
||||||
|
5.158095631 291.746
|
||||||
|
5.096060745 301.885
|
||||||
|
5.03626108 311.966
|
||||||
|
5.007260528 317.011
|
||||||
|
4.979831682 322.01
|
||||||
|
4.947555907 328.015
|
||||||
|
4.927322 331.981
|
||||||
|
|
||||||
|
|
83
tecs/inp/c2.inp
Normal file
83
tecs/inp/c2.inp
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
sens=c2
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=325 ! setpoint limit (automatic if omitted)
|
||||||
|
type=C ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=100uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
179323 0.607
|
||||||
|
112538 0.749
|
||||||
|
75275 0.891
|
||||||
|
52838 1.033
|
||||||
|
38592 1.176
|
||||||
|
29156 1.318
|
||||||
|
22674 1.460
|
||||||
|
18077 1.593
|
||||||
|
14725 1.709
|
||||||
|
10302 1.930
|
||||||
|
8000 2.112
|
||||||
|
7000 2.211
|
||||||
|
6500 2.272
|
||||||
|
6000 2.332
|
||||||
|
5500 2.404
|
||||||
|
5000 2.500
|
||||||
|
4500 2.595
|
||||||
|
4000 2.713
|
||||||
|
3500 2.865
|
||||||
|
3000 3.050
|
||||||
|
2800 3.142
|
||||||
|
2600 3.234
|
||||||
|
2400 3.349
|
||||||
|
2200 3.485
|
||||||
|
2000 3.644
|
||||||
|
1800 3.825
|
||||||
|
1600 4.051
|
||||||
|
1500 4.186
|
||||||
|
1400 4.342
|
||||||
|
1300 4.510
|
||||||
|
1200 4.711
|
||||||
|
1100 4.945
|
||||||
|
1000 5.233
|
||||||
|
900 5.577
|
||||||
|
800 6.008
|
||||||
|
750 6.273
|
||||||
|
700 6.582
|
||||||
|
650 6.934
|
||||||
|
600 7.363
|
||||||
|
550 7.879
|
||||||
|
500 8.516
|
||||||
|
450 9.327
|
||||||
|
400 10.412
|
||||||
|
380 10.949
|
||||||
|
360 11.541
|
||||||
|
340 12.309
|
||||||
|
320 13.188
|
||||||
|
300 14.177
|
||||||
|
280 15.498
|
||||||
|
260 17.041
|
||||||
|
240 19.140
|
||||||
|
210 23.577
|
||||||
|
200 25.693
|
||||||
|
190 28.258
|
||||||
|
180 31.496
|
||||||
|
170 35.618
|
||||||
|
165 38.056
|
||||||
|
160 40.920
|
||||||
|
155 44.302
|
||||||
|
150 48.177
|
||||||
|
145 52.835
|
||||||
|
140 58.344
|
||||||
|
135 65.188
|
||||||
|
130 73.754
|
||||||
|
126 82.556
|
||||||
|
122 93.825
|
||||||
|
118 108.675
|
||||||
|
114 129.321
|
||||||
|
110 159.772
|
||||||
|
108 181.052
|
||||||
|
106 208.836
|
||||||
|
104 245.923
|
||||||
|
102 299.013
|
||||||
|
101.8 300.013
|
||||||
|
100 330.010
|
||||||
|
|
24
tecs/inp/c_1.inp
Normal file
24
tecs/inp/c_1.inp
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
sens=c_1
|
||||||
|
unit=Ohm
|
||||||
|
type=C
|
||||||
|
form=loglog
|
||||||
|
curv
|
||||||
|
50049 1
|
||||||
|
6549 2
|
||||||
|
2249 3
|
||||||
|
1149 4.2
|
||||||
|
674 6
|
||||||
|
399 10
|
||||||
|
299 15
|
||||||
|
259 20
|
||||||
|
229 27
|
||||||
|
209 35
|
||||||
|
189 50
|
||||||
|
173 77
|
||||||
|
165 100
|
||||||
|
156 150
|
||||||
|
152 200
|
||||||
|
147 300
|
||||||
|
139 500
|
||||||
|
|
||||||
|
|
24
tecs/inp/c_2.inp
Normal file
24
tecs/inp/c_2.inp
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
sens=c_2
|
||||||
|
unit=Ohm
|
||||||
|
type=C
|
||||||
|
form=loglog
|
||||||
|
curv
|
||||||
|
50053 1
|
||||||
|
6553 2
|
||||||
|
2253 3
|
||||||
|
1153 4.2
|
||||||
|
678 6
|
||||||
|
403 10
|
||||||
|
303 15
|
||||||
|
263 20
|
||||||
|
233 27
|
||||||
|
213 35
|
||||||
|
193 50
|
||||||
|
177 77
|
||||||
|
169 100
|
||||||
|
160 150
|
||||||
|
156 200
|
||||||
|
151 300
|
||||||
|
143 500
|
||||||
|
|
||||||
|
|
24
tecs/inp/c_3.inp
Normal file
24
tecs/inp/c_3.inp
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
sens=c_3
|
||||||
|
unit=Ohm
|
||||||
|
type=C
|
||||||
|
form=loglog
|
||||||
|
curv
|
||||||
|
50076 1
|
||||||
|
6576 2
|
||||||
|
2276 3
|
||||||
|
1176 4.2
|
||||||
|
701 6
|
||||||
|
426 10
|
||||||
|
326 15
|
||||||
|
286 20
|
||||||
|
256 27
|
||||||
|
236 35
|
||||||
|
216 50
|
||||||
|
200 77
|
||||||
|
192 100
|
||||||
|
183 150
|
||||||
|
179 200
|
||||||
|
174 300
|
||||||
|
166 500
|
||||||
|
|
||||||
|
|
23
tecs/inp/c_4.inp
Normal file
23
tecs/inp/c_4.inp
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
sens=c_4
|
||||||
|
unit=Ohm
|
||||||
|
type=C
|
||||||
|
form=loglog
|
||||||
|
curv
|
||||||
|
50077 1
|
||||||
|
6577 2
|
||||||
|
2277 3
|
||||||
|
1177 4.2
|
||||||
|
702 6
|
||||||
|
427 10
|
||||||
|
327 15
|
||||||
|
287 20
|
||||||
|
257 27
|
||||||
|
237 35
|
||||||
|
217 50
|
||||||
|
201 77
|
||||||
|
193 100
|
||||||
|
184 150
|
||||||
|
180 200
|
||||||
|
175 300
|
||||||
|
167 500
|
||||||
|
|
7
tecs/inp/ccr2.cfg
Normal file
7
tecs/inp/ccr2.cfg
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
sensA.type=m sensA.curve=x31318
|
||||||
|
sensC.type=k sensC.curve=x31320
|
||||||
|
sensD.type=s sensD.curve=x31319
|
||||||
|
dev="4 K closed cycle refrigerator (FOCUS)"
|
||||||
|
tlimit=700 resist=25 maxPower=100
|
||||||
|
sensA.alarm=310
|
||||||
|
prop=50 int=20 deriv=0
|
8
tecs/inp/ccr2ht.cfg
Normal file
8
tecs/inp/ccr2ht.cfg
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
sensA.type=t sensA.curve=x14231 sensA.alarm=310
|
||||||
|
sensB.type=m sensB.curve=pt
|
||||||
|
sensC.type=k sensC.curve=x10409
|
||||||
|
sensD.type=s sensD.curve=x24506
|
||||||
|
|
||||||
|
dev="4 K closed cycle refrigerator (FOCUS) with hi-T stage"
|
||||||
|
tlimit=700 resist=25 maxPower=100
|
||||||
|
prop=50 int=20 deriv=0
|
4
tecs/inp/ccr4k.cfg
Normal file
4
tecs/inp/ccr4k.cfg
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
sensA.type=m sensA.curve=x22644
|
||||||
|
dev="4 K closed cycle refrigerator"
|
||||||
|
tlimit=310 resist=25 maxPower=100
|
||||||
|
prop=50 int=20 deriv=0
|
23
tecs/inp/cma11.inp
Normal file
23
tecs/inp/cma11.inp
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
sens=cma11
|
||||||
|
unit=Ohm
|
||||||
|
type=C
|
||||||
|
form=loglog
|
||||||
|
curv
|
||||||
|
50007 1
|
||||||
|
6507 2
|
||||||
|
2207 3
|
||||||
|
1107 4.2
|
||||||
|
632 6
|
||||||
|
357 10
|
||||||
|
257 15
|
||||||
|
217 20
|
||||||
|
187 27
|
||||||
|
167 35
|
||||||
|
147 50
|
||||||
|
131 77
|
||||||
|
122 100
|
||||||
|
114 150
|
||||||
|
110 200
|
||||||
|
105 300
|
||||||
|
97 500
|
||||||
|
|
23
tecs/inp/cplus45.inp
Normal file
23
tecs/inp/cplus45.inp
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
sens=cplus45
|
||||||
|
unit=Ohm
|
||||||
|
type=C
|
||||||
|
form=loglog
|
||||||
|
curv
|
||||||
|
50045 1
|
||||||
|
6545 2
|
||||||
|
2245 3
|
||||||
|
1145 4.2
|
||||||
|
670 6
|
||||||
|
395 10
|
||||||
|
295 15
|
||||||
|
255 20
|
||||||
|
225 27
|
||||||
|
205 35
|
||||||
|
185 50
|
||||||
|
169 77
|
||||||
|
161 100
|
||||||
|
152 150
|
||||||
|
148 200
|
||||||
|
143 300
|
||||||
|
135 500
|
||||||
|
|
23
tecs/inp/cplus70.inp
Normal file
23
tecs/inp/cplus70.inp
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
sens=cplus70
|
||||||
|
unit=Ohm
|
||||||
|
type=C
|
||||||
|
form=loglog
|
||||||
|
curv
|
||||||
|
50070 1
|
||||||
|
6570 2
|
||||||
|
2270 3
|
||||||
|
1170 4.2
|
||||||
|
695 6
|
||||||
|
420 10
|
||||||
|
320 15
|
||||||
|
280 20
|
||||||
|
250 27
|
||||||
|
230 35
|
||||||
|
210 50
|
||||||
|
194 77
|
||||||
|
186 100
|
||||||
|
177 150
|
||||||
|
173 200
|
||||||
|
168 300
|
||||||
|
135 500
|
||||||
|
|
4
tecs/inp/cti1.cfg
Normal file
4
tecs/inp/cti1.cfg
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
sensA.type=m sensA.curve=r10401
|
||||||
|
dev="CTI closed cycle refrigerator"
|
||||||
|
tlimit=310 resist=25 maxPower=25
|
||||||
|
prop=15 int=10 deriv=0
|
4
tecs/inp/cti2.cfg
Normal file
4
tecs/inp/cti2.cfg
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
sensA.type=m sensA.curve=r10402
|
||||||
|
dev="CTI closed cycle refrigerator"
|
||||||
|
tlimit=310 resist=25 maxPower=25
|
||||||
|
prop=15 int=10 deriv=0
|
4
tecs/inp/cti3.cfg
Normal file
4
tecs/inp/cti3.cfg
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
sensA.type=m sensA.curve=r10403
|
||||||
|
dev="CTI closed cycle refrigerator"
|
||||||
|
tlimit=310 resist=25 maxPower=25
|
||||||
|
prop=15 int=10 deriv=0
|
5
tecs/inp/cti4.cfg
Normal file
5
tecs/inp/cti4.cfg
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
sensA.type=t sensA.curve=r10411 sensA.alarm=300
|
||||||
|
sensB.type=m sensB.curve=rhfe4140
|
||||||
|
dev="CTI closed cycle refrigerator (30...475 K)"
|
||||||
|
tlimit=600 resist=25 maxPower=25
|
||||||
|
prop=15 int=10 deriv=0
|
4
tecs/inp/cti5.cfg
Normal file
4
tecs/inp/cti5.cfg
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
sensA.type=m sensA.curve=r10410
|
||||||
|
dev="CTI closed cycle refrigerator (high power)"
|
||||||
|
tlimit=310 resist=25 maxPower=25
|
||||||
|
prop=15 int=10 deriv=0
|
5
tecs/inp/cti6.cfg
Normal file
5
tecs/inp/cti6.cfg
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
sensA.type=m sensA.curve=std1
|
||||||
|
sensB.type=t sensB.curve=r10413
|
||||||
|
dev="CTI closed cycle refrigerator (FOCUS, 475 K)"
|
||||||
|
tlimit=474 resist=50 maxPower=25
|
||||||
|
prop=15 int=10 deriv=0
|
6
tecs/inp/dil.cfg
Normal file
6
tecs/inp/dil.cfg
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
sensC.type=s sensC.curve=rxdil
|
||||||
|
dev="dilution (Risoe)"
|
||||||
|
tlimit=375 resist=25 maxpower=25
|
||||||
|
prop=20 int=10 deriv=0
|
||||||
|
loop=2
|
||||||
|
|
6
tecs/inp/disc.cfg
Normal file
6
tecs/inp/disc.cfg
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
sensA.type=m sensA.curve=psam
|
||||||
|
sensB.type=n sensB.curve=g24741
|
||||||
|
dev="Displex closed cycle refrigerator C"
|
||||||
|
tlimit=310 resist=50 maxpower=50
|
||||||
|
sensA.lim=30 sensB.lim=60
|
||||||
|
prop=15 int=10 deriv=0
|
6
tecs/inp/dise.cfg
Normal file
6
tecs/inp/dise.cfg
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
sensA.type=m sensA.curve=psam
|
||||||
|
sensB.type=n sensB.curve=g26552
|
||||||
|
dev="Displex closed cycle refrigerator E"
|
||||||
|
tlimit=310 resist=50 maxpower=50
|
||||||
|
sensA.lim=30 sensB.lim=60
|
||||||
|
prop=15 int=10 deriv=0
|
76
tecs/inp/ds3b.inp
Normal file
76
tecs/inp/ds3b.inp
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
sens=ds3b
|
||||||
|
unit=V ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=325 ! setpoint limit (automatic if omitted)
|
||||||
|
type=Si ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=100uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
2.0 1.0
|
||||||
|
1.701 1.023
|
||||||
|
1.696 1.339
|
||||||
|
1.691 1.634
|
||||||
|
1.681 2.096
|
||||||
|
1.671 2.507
|
||||||
|
1.659 2.969
|
||||||
|
1.644 3.482
|
||||||
|
1.627 4.035
|
||||||
|
1.602 4.782
|
||||||
|
1.564 5.825
|
||||||
|
1.527 6.836
|
||||||
|
1.489 7.865
|
||||||
|
1.455 8.890
|
||||||
|
1.42273 9.93526
|
||||||
|
1.39637 10.8854
|
||||||
|
1.3709 11.8914
|
||||||
|
1.34717 12.9115
|
||||||
|
1.3257 13.9068
|
||||||
|
1.30501 14.9288
|
||||||
|
1.2869 15.871
|
||||||
|
1.26837 16.872
|
||||||
|
1.24986 17.9012
|
||||||
|
1.23182 18.9267
|
||||||
|
1.21451 19.9173
|
||||||
|
1.19683 20.9082
|
||||||
|
1.18224 21.6778
|
||||||
|
1.1643 22.5364
|
||||||
|
1.1509 23.1421
|
||||||
|
1.13892 23.7461
|
||||||
|
1.1304 24.3304
|
||||||
|
1.12457 24.9558
|
||||||
|
1.12113 25.5134
|
||||||
|
1.11756 26.3163
|
||||||
|
1.11473 27.1373
|
||||||
|
1.11227 27.9723
|
||||||
|
1.10969 28.963
|
||||||
|
1.10731 29.9676
|
||||||
|
1.10303 31.9567
|
||||||
|
1.09724 34.9549
|
||||||
|
1.09182 37.9771
|
||||||
|
1.08496 41.9734
|
||||||
|
1.06774 51.9579
|
||||||
|
1.05704 57.9796
|
||||||
|
1.04616 63.991
|
||||||
|
1.03518 69.9483
|
||||||
|
1.02386 75.9817
|
||||||
|
1.01241 81.9671
|
||||||
|
1.00074 87.9604
|
||||||
|
0.98883 93.9712
|
||||||
|
0.97685 99.929
|
||||||
|
0.95628 109.968
|
||||||
|
0.92481 124.962
|
||||||
|
0.89261 139.951
|
||||||
|
0.85971 154.977
|
||||||
|
0.82636 169.973
|
||||||
|
0.79251 184.99
|
||||||
|
0.75829 200.005
|
||||||
|
0.72381 214.98
|
||||||
|
0.68899 229.971
|
||||||
|
0.65383 244.991
|
||||||
|
0.61847 259.998
|
||||||
|
0.58301 274.976
|
||||||
|
0.54722 290.026
|
||||||
|
0.5113 305.074
|
||||||
|
0.47525 320.108
|
||||||
|
0.45111 330.134
|
||||||
|
|
||||||
|
|
94
tecs/inp/dt-470.inp
Normal file
94
tecs/inp/dt-470.inp
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
sens=dt-470
|
||||||
|
unit=V ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
type=Si ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
2.5 0.1
|
||||||
|
1.7027 1.1
|
||||||
|
1.69818 1.4
|
||||||
|
1.69367 1.7
|
||||||
|
1.68585 2.1
|
||||||
|
1.67398 2.6
|
||||||
|
1.65156 3.4
|
||||||
|
1.62622 4.2
|
||||||
|
1.59075 5.2
|
||||||
|
1.50258 7.5
|
||||||
|
1.46684 8.5
|
||||||
|
1.43474 9.5
|
||||||
|
1.40605 10.5
|
||||||
|
1.38012 11.5
|
||||||
|
1.35642 12.5
|
||||||
|
1.33438 13.5
|
||||||
|
1.30404 15
|
||||||
|
1.26685 17
|
||||||
|
1.22321 19.5
|
||||||
|
1.19645 21
|
||||||
|
1.17705 22
|
||||||
|
1.15558 23
|
||||||
|
1.13598 24
|
||||||
|
1.12463 25
|
||||||
|
1.11896 26
|
||||||
|
1.11517 27
|
||||||
|
1.11212 28
|
||||||
|
1.10945 29
|
||||||
|
1.10702 30
|
||||||
|
1.10476 31
|
||||||
|
1.10263 32
|
||||||
|
1.1006 33
|
||||||
|
1.09864 34
|
||||||
|
1.09489 36
|
||||||
|
1.08953 39
|
||||||
|
1.08781 40
|
||||||
|
1.0775 46
|
||||||
|
1.06702 52
|
||||||
|
1.0563 58
|
||||||
|
1.04353 65
|
||||||
|
1.03425 70
|
||||||
|
1.02482 75
|
||||||
|
1.01525 80
|
||||||
|
1.00552 85
|
||||||
|
0.99565 90
|
||||||
|
0.98564 95
|
||||||
|
0.9755 100
|
||||||
|
0.96524 105
|
||||||
|
0.95487 110
|
||||||
|
0.9444 115
|
||||||
|
0.93383 120
|
||||||
|
0.92317 125
|
||||||
|
0.91243 130
|
||||||
|
0.90161 135
|
||||||
|
0.89072 140
|
||||||
|
0.87976 145
|
||||||
|
0.86874 150
|
||||||
|
0.84651 160
|
||||||
|
0.82405 170
|
||||||
|
0.80139 180
|
||||||
|
0.77857 190
|
||||||
|
0.744 205
|
||||||
|
0.70909 220
|
||||||
|
0.67389 235
|
||||||
|
0.63842 250
|
||||||
|
0.60275 265
|
||||||
|
0.55494 285
|
||||||
|
0.51892 300
|
||||||
|
0.50691 305
|
||||||
|
0.4586 325
|
||||||
|
0.44647 330
|
||||||
|
0.41005 345
|
||||||
|
0.36111 365
|
||||||
|
0.32417 380
|
||||||
|
0.28701 395
|
||||||
|
0.27456 400
|
||||||
|
0.24964 410
|
||||||
|
0.22463 420
|
||||||
|
0.19961 430
|
||||||
|
0.1871 435
|
||||||
|
0.17464 440
|
||||||
|
0.16221 445
|
||||||
|
0.14985 450
|
||||||
|
0.13759 455
|
||||||
|
0.12547 460
|
||||||
|
0.11356 465
|
||||||
|
0.10191 470
|
||||||
|
0.09062 475
|
||||||
|
|
||||||
|
|
10
tecs/inp/fi.cfg
Normal file
10
tecs/inp/fi.cfg
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
sensA.type=f
|
||||||
|
sensB.type=t sensB.curve=rhfe4140 sensB.alarm=323
|
||||||
|
sensC.type=s sensC.curve=std6
|
||||||
|
sensD.type=m sensD.curve=std6
|
||||||
|
dev="ILL Furnace (1500 K, typ K)"
|
||||||
|
tlimit=1500 resist=1000 maxPower=2000 powfact=2000
|
||||||
|
controlmode=1
|
||||||
|
prop=3 int=0.3 deriv=0
|
||||||
|
lscfg="LINEAR A,2,1.6,3,1,-1.4;INTYPE A,0,1,2,10,12;DISPFLD 4,A,4;DISPLAY:4"
|
||||||
|
|
5
tecs/inp/fs.cfg
Normal file
5
tecs/inp/fs.cfg
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
sensC.type=m sensC.curve=std6
|
||||||
|
sensD.type=s sensD.curve=std6
|
||||||
|
dev="small furnace"
|
||||||
|
tlimit=800 resist=25 maxPower=100
|
||||||
|
prop=10 int=5 deriv=0
|
9
tecs/inp/ft.cfg
Normal file
9
tecs/inp/ft.cfg
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
sensA.type=f
|
||||||
|
sensB.type=t sensB.curve=rhfe4140 sensB.alarm=373
|
||||||
|
sensC.type=s sensC.curve=std6
|
||||||
|
sensD.type=m sensD.curve=std6
|
||||||
|
dev="tantalum furnace (1400 K)"
|
||||||
|
tlimit=1405 resist=1000 maxPower=50 powfact=2000
|
||||||
|
controlmode=1
|
||||||
|
prop=10 int=5 deriv=0
|
||||||
|
lscfg="LINEAR A,2,1.6,3,1,-1.4;INTYPE A,0,1,2,10,12;DISPFLD 4,A,4;DISPLAY:4"
|
10
tecs/inp/fw.cfg
Normal file
10
tecs/inp/fw.cfg
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
sensA.type=f
|
||||||
|
sensB.type=t sensB.curve=rhfe4140 sensB.alarm=323
|
||||||
|
sensC.type=s sensC.curve=type_c sensC.scale=2.0 sensC.kink=333.15
|
||||||
|
sensD.type=m sensD.curve=type_c sensD.scale=2.0 sensD.kink=333.15
|
||||||
|
dev="ILL Furnace (2000 K, typ C / W5)"
|
||||||
|
tlimit=1850 resist=1000 maxPower=2000 powfact=2000
|
||||||
|
controlmode=1
|
||||||
|
prop=3 int=0.3 deriv=0
|
||||||
|
lscfg="LINEAR A,2,1.6,3,1,-1.4;INTYPE A,0,1,2,10,12;DISPFLD 4,A,4;DISPLAY:4"
|
||||||
|
|
57
tecs/inp/g24741.inp
Normal file
57
tecs/inp/g24741.inp
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
sens=g24741
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=325 ! setpoint limit (automatic if omitted)
|
||||||
|
type=Ge ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
range=33333
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
3716.48 3.614
|
||||||
|
3303.08 3.805
|
||||||
|
2939.81 4.007
|
||||||
|
2634.1 4.211
|
||||||
|
2207.84 4.568
|
||||||
|
1850.95 4.962
|
||||||
|
1510.33 5.464
|
||||||
|
1168.62 6.17
|
||||||
|
898.255 6.969
|
||||||
|
664.661 7.969
|
||||||
|
503.54 8.966
|
||||||
|
385.764 9.997
|
||||||
|
302.717 11.005
|
||||||
|
241.569 12.011
|
||||||
|
196.091 13.009
|
||||||
|
161.375 14.009
|
||||||
|
134.756 15.002
|
||||||
|
113.613 16.009
|
||||||
|
97.1542 16.995
|
||||||
|
83.7844 17.987
|
||||||
|
72.9223 18.98
|
||||||
|
63.8891 19.986
|
||||||
|
55.898 21.062
|
||||||
|
46.4039 22.685
|
||||||
|
39.5526 24.203
|
||||||
|
33.94 25.781
|
||||||
|
29.5042 27.352
|
||||||
|
25.8808 28.938
|
||||||
|
22.6148 30.71
|
||||||
|
19.5475 32.811
|
||||||
|
16.2503 35.791
|
||||||
|
13.7919 38.802
|
||||||
|
11.9208 41.828
|
||||||
|
10.4837 44.827
|
||||||
|
9.33607 47.855
|
||||||
|
8.70341 49.86
|
||||||
|
7.45938 54.825
|
||||||
|
6.54015 59.805
|
||||||
|
5.84053 64.822
|
||||||
|
5.30420 69.803
|
||||||
|
4.87975 74.794
|
||||||
|
4.54002 79.775
|
||||||
|
4.26248 84.818
|
||||||
|
4.03819 89.795
|
||||||
|
3.85122 94.839
|
||||||
|
3.69833 99.809
|
||||||
|
3.46425 109.82
|
||||||
|
3.30216 119.843
|
||||||
|
1 350
|
||||||
|
|
||||||
|
|
69
tecs/inp/g25328.inp
Normal file
69
tecs/inp/g25328.inp
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
sens=g25328
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=325 ! setpoint limit (automatic if omitted)
|
||||||
|
type=Ge ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
range=33333
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
51742 1.20397
|
||||||
|
38374.4 1.30097
|
||||||
|
29285.9 1.39987
|
||||||
|
18336.7 1.59973
|
||||||
|
12322.8 1.80467
|
||||||
|
8953.12 2.00029
|
||||||
|
6797.69 2.19633
|
||||||
|
5283.47 2.40223
|
||||||
|
4277.88 2.59821
|
||||||
|
3518.79 2.80215
|
||||||
|
2970 2.99976
|
||||||
|
2553.86 3.19379
|
||||||
|
2199.04 3.40534
|
||||||
|
1942.6 3.59649
|
||||||
|
1720.04 3.79904
|
||||||
|
1539.73 3.99753
|
||||||
|
1386.08 4.19945
|
||||||
|
1141.13 4.6087
|
||||||
|
960.495 5.01198
|
||||||
|
788.722 5.52181
|
||||||
|
617.915 6.22374
|
||||||
|
481.462 7.01657
|
||||||
|
359.562 8.04131
|
||||||
|
276.645 9.05249
|
||||||
|
216.121 10.0975
|
||||||
|
173.58 11.1109
|
||||||
|
142.19 12.115
|
||||||
|
118.256 13.1243
|
||||||
|
100.185 14.1049
|
||||||
|
85.7627 15.0937
|
||||||
|
74.0598 16.0946
|
||||||
|
64.7476 17.0714
|
||||||
|
57.0177 18.0515
|
||||||
|
50.5646 19.0281
|
||||||
|
45.0554 20.0179
|
||||||
|
40.0589 21.0809
|
||||||
|
33.8704 22.6975
|
||||||
|
29.2326 24.2277
|
||||||
|
25.307 25.8307
|
||||||
|
22.174 27.4033
|
||||||
|
19.5516 29.0097
|
||||||
|
17.2057 30.757
|
||||||
|
14.9274 32.8585
|
||||||
|
12.4205 35.8717
|
||||||
|
10.5431 38.8891
|
||||||
|
9.09534 41.9407
|
||||||
|
7.99882 44.9009
|
||||||
|
7.09635 47.9674
|
||||||
|
6.6064 49.9668
|
||||||
|
5.633 54.9499
|
||||||
|
4.92135 59.8927
|
||||||
|
4.38084 64.8514
|
||||||
|
3.96147 69.8101
|
||||||
|
3.62938 74.7892
|
||||||
|
3.36171 79.8027
|
||||||
|
3.14631 84.787
|
||||||
|
2.96943 89.7821
|
||||||
|
2.82263 94.8151
|
||||||
|
2.70184 99.7862
|
||||||
|
2.51544 109.819
|
||||||
|
2.38525 119.826
|
||||||
|
1 350
|
||||||
|
|
69
tecs/inp/g25550.inp
Normal file
69
tecs/inp/g25550.inp
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
sens=g25550
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=325 ! setpoint limit (automatic if omitted)
|
||||||
|
type=Ge ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
range=33333
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
62321.3 1.2009
|
||||||
|
46207 1.30013
|
||||||
|
35094.4 1.40258
|
||||||
|
22373.5 1.59752
|
||||||
|
15326 1.79521
|
||||||
|
11200.4 1.9899
|
||||||
|
8362.98 2.20207
|
||||||
|
6513.28 2.41223
|
||||||
|
5356.83 2.5985
|
||||||
|
4433.07 2.80016
|
||||||
|
3742.13 3.00175
|
||||||
|
3222.56 3.19821
|
||||||
|
2805.65 3.39878
|
||||||
|
2470.82 3.59887
|
||||||
|
2194.89 3.8009
|
||||||
|
1969.57 4.00008
|
||||||
|
1775.99 4.20356
|
||||||
|
1422.69 4.68654
|
||||||
|
1220.45 5.05936
|
||||||
|
1018.33 5.54189
|
||||||
|
811.357 6.21394
|
||||||
|
641.701 6.97679
|
||||||
|
487.564 7.97051
|
||||||
|
381.494 8.95538
|
||||||
|
303.493 9.9658
|
||||||
|
247.623 10.9549
|
||||||
|
205.794 11.9455
|
||||||
|
173.45 12.9489
|
||||||
|
148.82 13.9294
|
||||||
|
128.951 14.9234
|
||||||
|
112.674 15.9345
|
||||||
|
99.5655 16.9246
|
||||||
|
88.6102 17.9191
|
||||||
|
79.3856 18.913
|
||||||
|
71.4038 19.9217
|
||||||
|
64.0717 21.0093
|
||||||
|
54.8993 22.659
|
||||||
|
48.003 24.1928
|
||||||
|
42.1299 25.7827
|
||||||
|
37.3274 27.3466
|
||||||
|
33.2266 28.9435
|
||||||
|
29.4847 30.6837
|
||||||
|
25.777 32.7852
|
||||||
|
21.6144 35.807
|
||||||
|
18.4462 38.8362
|
||||||
|
15.9599 41.9041
|
||||||
|
14.0667 44.8711
|
||||||
|
12.4931 47.9476
|
||||||
|
11.6357 49.9458
|
||||||
|
9.86331 55.1436
|
||||||
|
8.64011 59.988
|
||||||
|
7.69916 64.8521
|
||||||
|
6.95065 69.8121
|
||||||
|
6.35553 74.7943
|
||||||
|
5.87526 79.8043
|
||||||
|
5.48659 84.7949
|
||||||
|
5.16668 89.7832
|
||||||
|
4.89963 94.8091
|
||||||
|
4.67607 99.917
|
||||||
|
4.33433 109.992
|
||||||
|
4.09814 119.813
|
||||||
|
|
||||||
|
|
69
tecs/inp/g26552.inp
Normal file
69
tecs/inp/g26552.inp
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
sens=g26552
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=325 ! setpoint limit (automatic if omitted)
|
||||||
|
type=Ge ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
range=33333
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
44339.7 1.26752
|
||||||
|
30479.5 1.40131
|
||||||
|
19063.5 1.60058
|
||||||
|
12816.1 1.80449
|
||||||
|
9363.14 1.99492
|
||||||
|
6947.58 2.20682
|
||||||
|
5431.88 2.40878
|
||||||
|
4384.64 2.60805
|
||||||
|
3637.07 2.80314
|
||||||
|
3058.28 3.00423
|
||||||
|
2614.88 3.20522
|
||||||
|
2273.22 3.40257
|
||||||
|
1991.83 3.60531
|
||||||
|
1765.38 3.80634
|
||||||
|
1582.8 4.00195
|
||||||
|
1380.44 4.26656
|
||||||
|
1159.05 4.63876
|
||||||
|
975.898 5.04379
|
||||||
|
798.593 5.56593
|
||||||
|
623.062 6.28577
|
||||||
|
483.097 7.10211
|
||||||
|
361.38 8.13119
|
||||||
|
277.733 9.16019
|
||||||
|
215.352 10.2524
|
||||||
|
173.155 11.2782
|
||||||
|
142.178 12.2899
|
||||||
|
118.874 13.2861
|
||||||
|
100.926 14.2709
|
||||||
|
86.8487 15.2417
|
||||||
|
75.4522 16.2141
|
||||||
|
66.3158 17.1623
|
||||||
|
58.6667 18.1158
|
||||||
|
52.189 19.0755
|
||||||
|
46.619 20.0485
|
||||||
|
41.5819 21.0898
|
||||||
|
35.1838 22.7081
|
||||||
|
30.4344 24.2187
|
||||||
|
26.3232 25.8396
|
||||||
|
23.0313 27.4345
|
||||||
|
20.2266 29.0991
|
||||||
|
17.7346 30.9099
|
||||||
|
15.3757 33.0415
|
||||||
|
12.7993 36.0755
|
||||||
|
10.893 39.0826
|
||||||
|
9.4386 42.0696
|
||||||
|
8.29125 45.0773
|
||||||
|
7.3856 48.0592
|
||||||
|
6.87377 50.0678
|
||||||
|
5.85986 55.0763
|
||||||
|
5.11841 60.0483
|
||||||
|
4.55332 65.0504
|
||||||
|
4.11832 70.0235
|
||||||
|
3.78204 74.8823
|
||||||
|
3.50414 79.8877
|
||||||
|
3.27933 84.8633
|
||||||
|
3.09329 89.9091
|
||||||
|
2.94139 94.8836
|
||||||
|
2.81229 100.02
|
||||||
|
2.61888 109.99
|
||||||
|
2.48327 119.985
|
||||||
|
1 350
|
||||||
|
|
||||||
|
|
105
tecs/inp/gemark.inp
Normal file
105
tecs/inp/gemark.inp
Normal file
@ -0,0 +1,105 @@
|
|||||||
|
sens=gemark
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=325 ! setpoint limit (automatic if omitted)
|
||||||
|
type=Ge ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=100uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
992.7556998 1
|
||||||
|
792.1858987 1.1
|
||||||
|
653.3182511 1.2
|
||||||
|
552.6026325 1.3
|
||||||
|
476.8394272 1.4
|
||||||
|
418.1430416 1.5
|
||||||
|
371.2262706 1.6
|
||||||
|
332.9399159 1.7
|
||||||
|
301.2666387 1.8
|
||||||
|
274.7819189 1.9
|
||||||
|
252.4107683 2
|
||||||
|
233.326363 2.1
|
||||||
|
216.8968945 2.2
|
||||||
|
202.6260845 2.3
|
||||||
|
190.1282584 2.4
|
||||||
|
179.0951525 2.5
|
||||||
|
169.2860274 2.6
|
||||||
|
160.5048437 2.7
|
||||||
|
152.5965004 2.8
|
||||||
|
145.4329823 2.9
|
||||||
|
138.9113482 3
|
||||||
|
132.9452312 3.1
|
||||||
|
127.4641573 3.2
|
||||||
|
122.4082475 3.3
|
||||||
|
117.7278231 3.4
|
||||||
|
113.3802387 3.5
|
||||||
|
109.329501 3.6
|
||||||
|
105.5444561 3.7
|
||||||
|
101.9985953 3.8
|
||||||
|
98.66854327 3.9
|
||||||
|
95.53422694 4
|
||||||
|
89.78411574 4.2
|
||||||
|
84.63036666 4.4
|
||||||
|
79.9817946 4.6
|
||||||
|
75.76394149 4.8
|
||||||
|
71.91810156 5
|
||||||
|
68.39563463 5.2
|
||||||
|
65.15718079 5.4
|
||||||
|
62.16911131 5.6
|
||||||
|
59.40347818 5.8
|
||||||
|
56.83732393 6
|
||||||
|
51.16738451 6.5
|
||||||
|
46.37614641 7
|
||||||
|
42.28750151 7.5
|
||||||
|
38.77347458 8
|
||||||
|
35.73473767 8.5
|
||||||
|
33.09366895 9
|
||||||
|
30.7880927 9.5
|
||||||
|
28.76957297 10
|
||||||
|
26.99811498 10.5
|
||||||
|
25.43582083 11
|
||||||
|
24.04933649 11.5
|
||||||
|
22.81264984 12
|
||||||
|
21.70478628 12.5
|
||||||
|
20.7087146 13
|
||||||
|
19.81020181 13.5
|
||||||
|
18.99659056 14
|
||||||
|
18.25670823 14.5
|
||||||
|
17.58098117 15
|
||||||
|
16.96112438 15.5
|
||||||
|
16.39008975 16
|
||||||
|
15.86178642 16.5
|
||||||
|
15.3710694 17
|
||||||
|
14.91350279 17.5
|
||||||
|
14.48533597 18
|
||||||
|
14.08331295 18.5
|
||||||
|
13.70467074 19
|
||||||
|
13.3469953 19.5
|
||||||
|
13.00822897 20
|
||||||
|
12.38041392 21
|
||||||
|
11.80935842 22
|
||||||
|
11.28600739 23
|
||||||
|
10.8031861 24
|
||||||
|
10.35529442 25
|
||||||
|
9.937879436 26
|
||||||
|
9.547310328 27
|
||||||
|
9.180686215 28
|
||||||
|
8.835616101 29
|
||||||
|
8.510135723 30
|
||||||
|
8.202631541 31
|
||||||
|
7.911729004 32
|
||||||
|
7.636291925 33
|
||||||
|
7.375312858 34
|
||||||
|
7.127928135 35
|
||||||
|
6.893358558 36
|
||||||
|
6.670875366 37
|
||||||
|
6.459793187 38
|
||||||
|
6.259469861 39
|
||||||
|
6.069291409 40
|
||||||
|
5.6863 42.177
|
||||||
|
5.226 45.156
|
||||||
|
3 70
|
||||||
|
1.85 100
|
||||||
|
1.15 140
|
||||||
|
0.69 200
|
||||||
|
0.37 310
|
||||||
|
|
||||||
|
|
6
tecs/inp/hef4c.cfg
Normal file
6
tecs/inp/hef4c.cfg
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
sensA.type=m sensA.curve=r3510
|
||||||
|
sensB.type=t sensB.curve=r3509
|
||||||
|
sensC.type=s sensC.curve=x14126
|
||||||
|
dev="He-flow 4 circle cryostat"
|
||||||
|
tlimit=310 resist=50 maxPower=25
|
||||||
|
prop=50 int=20 deriv=0
|
7
tecs/inp/ill1.cfg
Normal file
7
tecs/inp/ill1.cfg
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
sensB.type=m sensB.curve=x15601
|
||||||
|
sensC.type=s sensC.curve=x12532
|
||||||
|
sensD.type=h
|
||||||
|
dev="orange cryostat 50 mm"
|
||||||
|
tLimit=310 resist=50 maxpower=25 controlMode=0
|
||||||
|
prop=25 int=10 deriv=0
|
||||||
|
full=4.64
|
6
tecs/inp/ill2.cfg
Normal file
6
tecs/inp/ill2.cfg
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
sensA.type=m sensA.curve=ds3b
|
||||||
|
sensC.type=s sensC.curve=x14130
|
||||||
|
sensD.type=h
|
||||||
|
dev="orange cryostat 70 mm"
|
||||||
|
tLimit=310 resist=50 maxpower=25 controlMode=0 full=4.64
|
||||||
|
prop=25 int=10 deriv=0
|
2
tecs/inp/ill2p.cfg
Normal file
2
tecs/inp/ill2p.cfg
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
sensC.type=s sensC.curve=x22637
|
||||||
|
dev="uniaxial pressure insert for ILL2"
|
6
tecs/inp/ill3.cfg
Normal file
6
tecs/inp/ill3.cfg
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
sensA.type=m sensA.curve=rhfe8119
|
||||||
|
sensB.type=h
|
||||||
|
sensC.type=s sensC.curve=rhfe8244
|
||||||
|
dev="cryofurnace without power supply"
|
||||||
|
tLimit=450 resist=10 maxpower=40 controlMode=0 full=4.64
|
||||||
|
prop=25 int=10 deriv=0
|
7
tecs/inp/ill3f.cfg
Normal file
7
tecs/inp/ill3f.cfg
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
sensA.type=m sensA.curve=rhfe8119
|
||||||
|
sensB.type=h
|
||||||
|
sensC.type=s sensC.curve=rhfe8244
|
||||||
|
dev="cryofurnace with power supply"
|
||||||
|
tLimit=600 resist=1000 maxpower=180 powFact=45
|
||||||
|
prop=25 int=10 deriv=0
|
||||||
|
controlMode=0 full=4.64
|
6
tecs/inp/ill4.cfg
Normal file
6
tecs/inp/ill4.cfg
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
sensA.type=m sensA.curve=dt-470
|
||||||
|
sensB.type=h
|
||||||
|
sensC.type=s sensC.curve=x13089
|
||||||
|
dev="FOCUS orange cryostat 70 mm"
|
||||||
|
tLimit=310 resist=50 maxpower=25 controlMode=0 full=4.64
|
||||||
|
prop=25 int=10 deriv=0
|
7
tecs/inp/ill5.cfg
Normal file
7
tecs/inp/ill5.cfg
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
sensB.type=m sensB.curve=x10045
|
||||||
|
sensC.type=s sensC.curve=x09882
|
||||||
|
sensD.type=h
|
||||||
|
dev="maxi orange crostat 100 mm"
|
||||||
|
tLimit=310 resist=50 maxpower=25 controlMode=0 full=4.64
|
||||||
|
prop=25 int=10 deriv=0
|
||||||
|
sensA.alarm=0
|
3
tecs/inp/ill5n.cfg
Normal file
3
tecs/inp/ill5n.cfg
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
sensC.type=s sensC.curve=x09883
|
||||||
|
sensD.type=h
|
||||||
|
dev="precoolable sample stick for maxi orange cryostat"
|
27
tecs/inp/lsc.codes
Normal file
27
tecs/inp/lsc.codes
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
# Code list for SE devices connected via LSC340
|
||||||
|
#
|
||||||
|
ill1 1 -1
|
||||||
|
ill2 2 -2
|
||||||
|
ill2p -3
|
||||||
|
ill3 3 -5
|
||||||
|
ill4 4 -6
|
||||||
|
ill5 5 -4
|
||||||
|
ill5n -7
|
||||||
|
cti1 6
|
||||||
|
cti2 7
|
||||||
|
cti3 8
|
||||||
|
cti4 9
|
||||||
|
cti6 11
|
||||||
|
apd 12
|
||||||
|
apdl -9
|
||||||
|
ccr4k 13
|
||||||
|
ccr2 28 -28
|
||||||
|
hef4c 14 -11
|
||||||
|
sup4t 15 60
|
||||||
|
ma09 19 -19
|
||||||
|
dise 26 -26
|
||||||
|
ori1 29 -29
|
||||||
|
ori2 25 -25
|
||||||
|
ori3 22 -22
|
||||||
|
ma11 27
|
||||||
|
ma02 23 -23
|
5
tecs/inp/ma02.cfg
Normal file
5
tecs/inp/ma02.cfg
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
sensA.type=m sensA.curve=x29746
|
||||||
|
sensC.type=s sensC.curve=x29630
|
||||||
|
dev="1.8 T horizontal cryomagnet (Risoe)"
|
||||||
|
tlimit=310 resist=50 maxpower=50
|
||||||
|
prop=15 int=10 deriv=0
|
8
tecs/inp/ma09.cfg
Normal file
8
tecs/inp/ma09.cfg
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
sensA.type=m sensA.curve=c17844
|
||||||
|
sensB.type=t sensB.curve=cplus70
|
||||||
|
sensC.type=s sensC.curve=x22642
|
||||||
|
dev="9 T vertical cryomagnet (Risoe)"
|
||||||
|
tlimit=310 resist=50 maxpower=50
|
||||||
|
swRangeOn=1
|
||||||
|
prop=20 int=10 deriv=0
|
||||||
|
lscfg="dispfld 4,B,3;display 4"
|
3
tecs/inp/ma11.cfg
Normal file
3
tecs/inp/ma11.cfg
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
sensA.type=t sensA.curve=cplus45
|
||||||
|
dev="SANS test carbon resistors"
|
||||||
|
lscfg="dispfld 2,A,3;display 2"
|
110
tecs/inp/mz020124.inp
Normal file
110
tecs/inp/mz020124.inp
Normal file
@ -0,0 +1,110 @@
|
|||||||
|
sens=mz020124
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=3250 ! setpoint limit (automatic if omitted)
|
||||||
|
type=RhFe ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
form=loglog
|
||||||
|
!excit=300uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
1.954519465 3.1206
|
||||||
|
1.985957728 3.391099984
|
||||||
|
2.017855208 3.674243588
|
||||||
|
2.050312219 3.970801721
|
||||||
|
2.083291299 4.281292125
|
||||||
|
2.116752103 4.606384478
|
||||||
|
2.150799862 4.946893604
|
||||||
|
2.185344956 5.303354639
|
||||||
|
2.220496025 5.676624202
|
||||||
|
2.256160544 6.067557577
|
||||||
|
2.292450675 6.476886834
|
||||||
|
2.329270895 6.905479786
|
||||||
|
2.366736998 7.354276657
|
||||||
|
2.404750369 7.824233572
|
||||||
|
2.443430553 8.316344412
|
||||||
|
2.482675737 8.831617418
|
||||||
|
2.522609344 9.371236431
|
||||||
|
2.563126259 9.936251595
|
||||||
|
2.604353905 10.52785303
|
||||||
|
2.646183761 11.14740374
|
||||||
|
2.688747379 11.79612797
|
||||||
|
2.731932722 12.47543812
|
||||||
|
2.775875604 13.18668703
|
||||||
|
2.820460358 13.93153058
|
||||||
|
2.865827198 14.71147282
|
||||||
|
2.911856711 15.52816789
|
||||||
|
2.957399533 16.38012579
|
||||||
|
3.001096774 17.2515529
|
||||||
|
3.043336677 18.12271256
|
||||||
|
3.084537113 18.99996906
|
||||||
|
3.125143759 19.89802618
|
||||||
|
3.165555994 20.82438653
|
||||||
|
3.206343152 21.78831425
|
||||||
|
3.248029761 22.80187398
|
||||||
|
3.291091827 23.88041394
|
||||||
|
3.336184037 25.02255504
|
||||||
|
3.383062335 26.2130948
|
||||||
|
3.431310348 27.45487455
|
||||||
|
3.481528863 28.75178258
|
||||||
|
3.534516391 30.107979
|
||||||
|
3.590789942 31.52786691
|
||||||
|
3.651236801 33.01467207
|
||||||
|
3.716464596 34.5715482
|
||||||
|
3.787476963 36.20179764
|
||||||
|
3.864826479 37.90887837
|
||||||
|
3.947389668 39.69641134
|
||||||
|
4.03663982 41.56818814
|
||||||
|
4.135042713 43.52817906
|
||||||
|
4.245120281 45.58054151
|
||||||
|
4.369884919 47.72962882
|
||||||
|
4.512425035 49.9799995
|
||||||
|
4.672292251 52.33642688
|
||||||
|
4.846743092 54.80390926
|
||||||
|
5.036861394 57.3876805
|
||||||
|
5.244329856 60.09322113
|
||||||
|
5.470789441 62.92626996
|
||||||
|
5.717945347 65.89283627
|
||||||
|
5.98783742 68.99921254
|
||||||
|
6.280872826 72.25198782
|
||||||
|
6.597812965 75.65806167
|
||||||
|
6.93920951 79.22465883
|
||||||
|
7.306173816 82.95934454
|
||||||
|
7.698923424 86.87004057
|
||||||
|
8.118017814 90.96504202
|
||||||
|
8.56406589 95.25303495
|
||||||
|
9.036702813 99.74311475
|
||||||
|
9.535643365 104.4448055
|
||||||
|
10.06027842 109.3680801
|
||||||
|
10.61133438 114.5233815
|
||||||
|
11.18948246 119.9216448
|
||||||
|
11.7953274 125.5743203
|
||||||
|
12.42910909 131.4933983
|
||||||
|
13.09181923 137.6914338
|
||||||
|
13.78319816 144.1815737
|
||||||
|
14.50373981 150.9775845
|
||||||
|
15.25351734 158.0938814
|
||||||
|
16.03356143 165.5455591
|
||||||
|
16.84612427 173.3484235
|
||||||
|
17.69253242 181.5190256
|
||||||
|
18.57462266 190.0746963
|
||||||
|
19.49395683 199.0335833
|
||||||
|
20.45266947 208.4146897
|
||||||
|
21.45210925 218.2379139
|
||||||
|
22.49468935 228.5240925
|
||||||
|
23.58305153 239.2950438
|
||||||
|
24.71894892 250.5736143
|
||||||
|
25.90955775 262.3837275
|
||||||
|
27.15813858 274.7504342
|
||||||
|
28.46033449 287.6999658
|
||||||
|
29.81192363 301.25979
|
||||||
|
31.2169163 315.4586691
|
||||||
|
32.68812424 330.3267207
|
||||||
|
34.22866808 345.895482
|
||||||
|
35.84181551 362.1979764
|
||||||
|
37.53098823 379.2687837
|
||||||
|
39.29976921 397.1441134
|
||||||
|
41.15191027 415.8618814
|
||||||
|
43.09134006 435.4617906
|
||||||
|
45.12217235 455.9854151
|
||||||
|
47.24871481 477.4762882
|
||||||
|
|
||||||
|
|
126
tecs/inp/mz030500.inp
Normal file
126
tecs/inp/mz030500.inp
Normal file
@ -0,0 +1,126 @@
|
|||||||
|
sens=mz030500
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=3250 ! setpoint limit (automatic if omitted)
|
||||||
|
type=RhFe ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=300uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
2.498 4.472532903
|
||||||
|
3 9.773124819
|
||||||
|
3.06 10.55303764
|
||||||
|
3.12 11.46731087
|
||||||
|
3.18 12.38397382
|
||||||
|
3.24 13.37176795
|
||||||
|
3.3 14.42540969
|
||||||
|
3.37 15.73076805
|
||||||
|
3.44 17.12343827
|
||||||
|
3.51 18.64642133
|
||||||
|
3.58 20.24301705
|
||||||
|
3.65 21.9221971
|
||||||
|
3.72 23.69988759
|
||||||
|
3.79 25.51904558
|
||||||
|
3.87 27.62746099
|
||||||
|
3.95 29.74116813
|
||||||
|
4.03 31.80878152
|
||||||
|
4.11 33.81739732
|
||||||
|
4.19 35.75357133
|
||||||
|
4.27 37.5847035
|
||||||
|
4.36 39.53810683
|
||||||
|
4.45 41.40171428
|
||||||
|
4.54 43.17988888
|
||||||
|
4.63 44.87496076
|
||||||
|
4.72 46.49129524
|
||||||
|
4.81 48.04370952
|
||||||
|
4.91 49.6720703
|
||||||
|
5.01 51.27267707
|
||||||
|
5.11 52.82258535
|
||||||
|
5.21 54.30211212
|
||||||
|
5.31 55.74326127
|
||||||
|
5.42 57.25945659
|
||||||
|
5.53 58.73605895
|
||||||
|
5.64 60.19158187
|
||||||
|
5.75 61.60151532
|
||||||
|
5.87 63.10400027
|
||||||
|
5.99 64.58000866
|
||||||
|
6.11 66.03690471
|
||||||
|
6.23 67.45325536
|
||||||
|
6.35 68.84502457
|
||||||
|
6.48 70.32891791
|
||||||
|
6.61 71.79267469
|
||||||
|
6.74 73.23720062
|
||||||
|
6.87 74.66546356
|
||||||
|
7.01 76.18382684
|
||||||
|
7.15 77.67731168
|
||||||
|
7.29 79.15321097
|
||||||
|
7.44 80.71669982
|
||||||
|
7.59 82.26065751
|
||||||
|
7.74 83.77920365
|
||||||
|
7.89 85.2977498
|
||||||
|
8.05 86.91753235
|
||||||
|
8.21 88.50330232
|
||||||
|
8.37 90.08781524
|
||||||
|
8.54 91.77136022
|
||||||
|
8.71 93.42984611
|
||||||
|
8.88 95.08617427
|
||||||
|
9.06 96.8399335
|
||||||
|
9.24 98.57303396
|
||||||
|
9.42 100.3060185
|
||||||
|
9.61 102.1321031
|
||||||
|
9.8 103.9440315
|
||||||
|
10 105.8513246
|
||||||
|
10.2 107.752616
|
||||||
|
10.4 109.6486395
|
||||||
|
10.61 111.6394642
|
||||||
|
10.82 113.6247095
|
||||||
|
11.04 115.7043276
|
||||||
|
11.26 117.7833593
|
||||||
|
11.49 119.9563834
|
||||||
|
11.72 122.130388
|
||||||
|
11.95 124.3074784
|
||||||
|
12.19 126.5792385
|
||||||
|
12.43 128.853444
|
||||||
|
12.68 131.2224081
|
||||||
|
12.93 133.5961045
|
||||||
|
13.19 136.0654791
|
||||||
|
13.45 138.5436461
|
||||||
|
13.72 141.119047
|
||||||
|
13.99 143.7001032
|
||||||
|
14.27 146.3776573
|
||||||
|
14.56 149.1617938
|
||||||
|
14.85 151.9478907
|
||||||
|
15.15 154.8374244
|
||||||
|
15.45 157.7280848
|
||||||
|
15.76 160.7164093
|
||||||
|
16.08 163.8065005
|
||||||
|
16.4 166.8996993
|
||||||
|
16.73 170.0966977
|
||||||
|
17.06 173.302643
|
||||||
|
17.4 176.6125596
|
||||||
|
17.75 180.0321832
|
||||||
|
18.11 183.5578675
|
||||||
|
18.47 187.0893314
|
||||||
|
18.84 190.7241807
|
||||||
|
19.22 194.4710294
|
||||||
|
19.6 198.2263364
|
||||||
|
19.99 202.0878068
|
||||||
|
20.39 206.0543442
|
||||||
|
20.8 210.127842
|
||||||
|
21.22 214.3079218
|
||||||
|
21.64 218.4924193
|
||||||
|
22.07 222.7820044
|
||||||
|
22.51 227.1788701
|
||||||
|
22.96 231.6827282
|
||||||
|
23.42 236.2894724
|
||||||
|
23.89 241.001239
|
||||||
|
24.37 245.8178023
|
||||||
|
24.86 250.7437405
|
||||||
|
25.36 255.7715377
|
||||||
|
25.87 260.8990519
|
||||||
|
26.39 266.1324909
|
||||||
|
26.92 271.458145
|
||||||
|
27.46 276.8800659
|
||||||
|
28.01 282.4402052
|
||||||
|
28.57 288.1037036
|
||||||
|
29.14 293.8716111
|
||||||
|
37.2 375.1552482
|
||||||
|
|
7
tecs/inp/ori1.cfg
Normal file
7
tecs/inp/ori1.cfg
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
sensA.type=m sensA.curve=pcry sensA.lim=50
|
||||||
|
sensB.type=n sensB.curve=c030311 sensB.lim=60
|
||||||
|
sensC.type=s sensC.curve=psam sensC.lim=50
|
||||||
|
sensD.type=l sensD.curve=g25328 sensD.lim=60
|
||||||
|
dev="orange cryostat 50 mm (Risoe)"
|
||||||
|
tlimit=310 resist=50 maxpower=50 controlmode=0
|
||||||
|
prop=25 int=10 deriv=0
|
7
tecs/inp/ori2.cfg
Normal file
7
tecs/inp/ori2.cfg
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
sensA.type=m sensA.curve=pcry sensA.lim=30
|
||||||
|
sensB.type=n sensB.curve=c030307 sensB.lim=40
|
||||||
|
sensC.type=t sensC.curve=psam
|
||||||
|
sensD.type=s sensD.curve=x2060
|
||||||
|
dev="orange cryostat 50 mm (Risoe)"
|
||||||
|
tlimit=310 resist=50 maxpower=50 controlmode=0
|
||||||
|
prop=25 int=10 deriv=0
|
6
tecs/inp/ori3.cfg
Normal file
6
tecs/inp/ori3.cfg
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
sensA.type=m sensA.curve=pcry sensA.lim=50
|
||||||
|
sensB.type=n sensB.curve=c020415 sensB.lim=60
|
||||||
|
sensC.type=s sensC.curve=x22643
|
||||||
|
dev="maxi orange cryostat 100 mm (Risoe)"
|
||||||
|
tlimit=310 resist=50 maxpower=50 controlmode=0
|
||||||
|
prop=25 int=10 deriv=0
|
84
tecs/inp/pcry.inp
Normal file
84
tecs/inp/pcry.inp
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
sens=pcry
|
||||||
|
unit=Ohm
|
||||||
|
type=Pt250
|
||||||
|
curv
|
||||||
|
0.001 10
|
||||||
|
0.141 13
|
||||||
|
0.164 14
|
||||||
|
0.193 15
|
||||||
|
0.228 16
|
||||||
|
0.271 17
|
||||||
|
0.321 18
|
||||||
|
0.379 19
|
||||||
|
0.525 21
|
||||||
|
0.713 23
|
||||||
|
0.823 24
|
||||||
|
0.946 25
|
||||||
|
1.555 29
|
||||||
|
2.139 32
|
||||||
|
2.587 34
|
||||||
|
3.082 36
|
||||||
|
3.619 38
|
||||||
|
4.195 40
|
||||||
|
4.807 42
|
||||||
|
5.126 43
|
||||||
|
5.788 45
|
||||||
|
6.833 48
|
||||||
|
7.56 50
|
||||||
|
8.31 52
|
||||||
|
8.692 53
|
||||||
|
9.469 55
|
||||||
|
10.261 57
|
||||||
|
11.474 60
|
||||||
|
11.884 61
|
||||||
|
12.713 63
|
||||||
|
13.971 66
|
||||||
|
15.243 69
|
||||||
|
16.953 73
|
||||||
|
18.244 76
|
||||||
|
19.107 78
|
||||||
|
20.407 81
|
||||||
|
21.71 84
|
||||||
|
22.58 86
|
||||||
|
23.886 89
|
||||||
|
24.755 91
|
||||||
|
26.057 94
|
||||||
|
26.924 96
|
||||||
|
27.789 98
|
||||||
|
28.652 100
|
||||||
|
29.515 102
|
||||||
|
30.376 104
|
||||||
|
31.236 106
|
||||||
|
32.095 108
|
||||||
|
32.952 110
|
||||||
|
33.809 112
|
||||||
|
34.664 114
|
||||||
|
35.518 116
|
||||||
|
36.371 118
|
||||||
|
37.222 120
|
||||||
|
38.073 122
|
||||||
|
38.498 123
|
||||||
|
39.347 125
|
||||||
|
40.195 127
|
||||||
|
41.041 129
|
||||||
|
42.31 132
|
||||||
|
43.154 134
|
||||||
|
47.36 144
|
||||||
|
50.708 153
|
||||||
|
55.703 164
|
||||||
|
59.842 174
|
||||||
|
63.962 184
|
||||||
|
67.654 193
|
||||||
|
72.149 204
|
||||||
|
75.811 213
|
||||||
|
79.865 223
|
||||||
|
88.335 244
|
||||||
|
91.948 253
|
||||||
|
95.949 263
|
||||||
|
99.939 273
|
||||||
|
104.315 284
|
||||||
|
107.884 293
|
||||||
|
112.234 304
|
||||||
|
115.782 313
|
||||||
|
|
||||||
|
|
90
tecs/inp/psam.inp
Normal file
90
tecs/inp/psam.inp
Normal file
@ -0,0 +1,90 @@
|
|||||||
|
sens=psam
|
||||||
|
unit=Ohm
|
||||||
|
type=Pt250
|
||||||
|
curv
|
||||||
|
0.001 1
|
||||||
|
1.806 11.014
|
||||||
|
1.855 13.02
|
||||||
|
1.909 14.627
|
||||||
|
1.924 15
|
||||||
|
2.019 16.858
|
||||||
|
2.087 17.962
|
||||||
|
2.122 18.462
|
||||||
|
2.165 19.053
|
||||||
|
2.391 21.605
|
||||||
|
2.561 23.17
|
||||||
|
2.68 24.154
|
||||||
|
2.848 25.4
|
||||||
|
3.551 29.725
|
||||||
|
4.154 32.689
|
||||||
|
4.656 34.85
|
||||||
|
5.112 36.661
|
||||||
|
5.534 38.241
|
||||||
|
6.279 40.827
|
||||||
|
6.933 42.954
|
||||||
|
7.241 43.924
|
||||||
|
7.833 45.742
|
||||||
|
8.64 48.081
|
||||||
|
9.402 50.233
|
||||||
|
10.11 52.159
|
||||||
|
10.768 53.915
|
||||||
|
11.415 55.611
|
||||||
|
12.021 57.17
|
||||||
|
13.16 60.054
|
||||||
|
13.709 61.422
|
||||||
|
14.73 63.939
|
||||||
|
15.735 66.413
|
||||||
|
17.176 69.883
|
||||||
|
18.516 73.074
|
||||||
|
19.803 76.131
|
||||||
|
21.014 78.997
|
||||||
|
22.173 81.727
|
||||||
|
23.3 84.385
|
||||||
|
24.368 86.89
|
||||||
|
25.426 89.382
|
||||||
|
26.427 91.735
|
||||||
|
27.424 94.083
|
||||||
|
28.371 96.319
|
||||||
|
29.323 98.565
|
||||||
|
30.224 100.689
|
||||||
|
31.133 102.843
|
||||||
|
32 104.889
|
||||||
|
32.865 106.94
|
||||||
|
33.708 108.941
|
||||||
|
34.537 110.912
|
||||||
|
35.359 112.864
|
||||||
|
36.15 114.752
|
||||||
|
36.954 116.669
|
||||||
|
37.73 118.519
|
||||||
|
38.501 120.368
|
||||||
|
39.266 122.204
|
||||||
|
40.007 123.973
|
||||||
|
40.756 125.779
|
||||||
|
41.485 127.528
|
||||||
|
42.201 129.251
|
||||||
|
43.622 132.682
|
||||||
|
44.32 134.373
|
||||||
|
48.378 144.217
|
||||||
|
52.255 153.673
|
||||||
|
56.564 164.241
|
||||||
|
60.698 174.433
|
||||||
|
64.687 184.307
|
||||||
|
68.544 193.884
|
||||||
|
72.767 204.422
|
||||||
|
76.379 213.474
|
||||||
|
80.392 223.56
|
||||||
|
84.256 233.308
|
||||||
|
88.516 244.079
|
||||||
|
92.107 253.192
|
||||||
|
96.145 263.468
|
||||||
|
99.966 273.226
|
||||||
|
104.27 284.239
|
||||||
|
107.917 293.61
|
||||||
|
112.073 304.315
|
||||||
|
115.569 313.341
|
||||||
|
119.4 323.15
|
||||||
|
123.24 333.15
|
||||||
|
127.07 343.15
|
||||||
|
130.89 353.15
|
||||||
|
134.7 363.15
|
||||||
|
|
79
tecs/inp/r10401.inp
Normal file
79
tecs/inp/r10401.inp
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
sens=r10401
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=3250 ! setpoint limit (automatic if omitted)
|
||||||
|
type=RhFe ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=300uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
10.96200458 3.603395939
|
||||||
|
11.04714997 3.808389425
|
||||||
|
11.13021051 4.011863947
|
||||||
|
11.2073775 4.204595804
|
||||||
|
11.36363222 4.605828285
|
||||||
|
11.50949981 4.993322611
|
||||||
|
11.69383035 5.504942894
|
||||||
|
11.93243104 6.212180376
|
||||||
|
12.18509969 7.012435913
|
||||||
|
12.47627119 8.014698029
|
||||||
|
12.74734121 9.034718037
|
||||||
|
13.00782548 10.10107994
|
||||||
|
13.23587728 11.11396694
|
||||||
|
13.44662561 12.12006378
|
||||||
|
13.64412098 13.1283412
|
||||||
|
13.82350155 14.10537004
|
||||||
|
13.99576341 15.10103607
|
||||||
|
14.15889543 16.09725189
|
||||||
|
14.31057818 17.07322216
|
||||||
|
14.45655057 18.06075191
|
||||||
|
14.5951817 19.0368576
|
||||||
|
14.73183773 20.03655338
|
||||||
|
14.87087365 21.09358788
|
||||||
|
15.07781173 22.72771549
|
||||||
|
15.26460339 24.24478149
|
||||||
|
15.4628644 25.89118862
|
||||||
|
15.65567767 27.49553299
|
||||||
|
15.85444989 29.14401627
|
||||||
|
16.08139617 30.97371197
|
||||||
|
16.35794886 33.11646652
|
||||||
|
16.77443694 36.13684464
|
||||||
|
17.22711357 39.14133644
|
||||||
|
17.71083059 42.07385445
|
||||||
|
18.25288311 45.08248711
|
||||||
|
18.84057851 48.0809536
|
||||||
|
19.26707994 50.11228752
|
||||||
|
20.3967488 55.07016945
|
||||||
|
21.65691551 60.06259346
|
||||||
|
23.03485099 65.08966827
|
||||||
|
24.49958857 70.08788681
|
||||||
|
26.03263916 75.05260086
|
||||||
|
27.61641081 79.97705841
|
||||||
|
29.31389895 85.09089661
|
||||||
|
30.93957939 89.87670898
|
||||||
|
32.71619025 95.01864243
|
||||||
|
34.48065399 100.0529747
|
||||||
|
38.00798124 110.0273895
|
||||||
|
41.56033691 120.0323105
|
||||||
|
45.104542 130.033226
|
||||||
|
48.63416685 140.0548325
|
||||||
|
52.12144721 150.0316315
|
||||||
|
55.58240817 160.0153122
|
||||||
|
59.02106315 170.0214767
|
||||||
|
62.41786749 179.9794617
|
||||||
|
65.80196734 189.977066
|
||||||
|
69.16736962 199.9859848
|
||||||
|
72.50752808 209.9737015
|
||||||
|
75.83749417 219.9729462
|
||||||
|
79.16022406 229.9922028
|
||||||
|
82.45405462 239.9561462
|
||||||
|
85.75238933 249.9529495
|
||||||
|
89.04424414 259.9512482
|
||||||
|
92.33610995 269.953186
|
||||||
|
95.62668504 279.9625397
|
||||||
|
98.90977798 289.950943
|
||||||
|
102.1982893 299.9454956
|
||||||
|
105.4870335 309.9390564
|
||||||
|
107.1249122 314.9157104
|
||||||
|
108.7501604 319.8446808
|
||||||
|
110.735724 325.8632507
|
||||||
|
112.0061582 329.714859
|
||||||
|
|
80
tecs/inp/r10402.inp
Normal file
80
tecs/inp/r10402.inp
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
sens=r10402
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=3250 ! setpoint limit (automatic if omitted)
|
||||||
|
type=RhFe ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=300uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
10.8760399 3.60362947
|
||||||
|
10.96156416 3.808573246
|
||||||
|
11.04405501 4.011402369
|
||||||
|
11.12172118 4.20448184
|
||||||
|
11.27828274 4.605803728
|
||||||
|
11.42410062 4.99340415
|
||||||
|
11.60857321 5.504968882
|
||||||
|
11.84771555 6.212155819
|
||||||
|
12.10084347 7.012536526
|
||||||
|
12.39236716 8.014623165
|
||||||
|
12.6648384 9.034653187
|
||||||
|
12.92509584 10.1014185
|
||||||
|
13.15382122 11.11374331
|
||||||
|
13.36476997 12.1199131
|
||||||
|
13.56275485 13.12841368
|
||||||
|
13.74237726 14.1056633
|
||||||
|
13.91456868 15.10070419
|
||||||
|
14.07806907 16.09651661
|
||||||
|
14.22988723 17.07314491
|
||||||
|
14.37653962 18.06040382
|
||||||
|
14.51557176 19.03698158
|
||||||
|
14.65198532 20.0368824
|
||||||
|
14.79137027 21.09377289
|
||||||
|
14.99888246 22.72714233
|
||||||
|
15.18589533 24.24513531
|
||||||
|
15.38513597 25.89107323
|
||||||
|
15.57862236 27.49502659
|
||||||
|
15.7781861 29.14448071
|
||||||
|
16.01069201 31.00509262
|
||||||
|
16.28352089 33.10315704
|
||||||
|
16.70616645 36.14212799
|
||||||
|
17.16219556 39.13899994
|
||||||
|
17.65208858 42.07397842
|
||||||
|
18.20100239 45.08285522
|
||||||
|
18.7978474 48.08141899
|
||||||
|
19.22993208 50.1128273
|
||||||
|
20.37744592 55.07047462
|
||||||
|
21.65843739 60.06211853
|
||||||
|
23.06152406 65.08961487
|
||||||
|
24.55309641 70.08821106
|
||||||
|
26.11557305 75.0525322
|
||||||
|
27.73038954 79.97639084
|
||||||
|
29.46248067 85.09117508
|
||||||
|
31.12198308 89.87803268
|
||||||
|
32.9346229 95.01881409
|
||||||
|
34.7358574 100.0531731
|
||||||
|
38.33871566 110.0273514
|
||||||
|
41.96687299 120.0326347
|
||||||
|
45.5878966 130.0335617
|
||||||
|
49.19480258 140.0551605
|
||||||
|
52.75888613 150.0321045
|
||||||
|
56.29611486 160.0150681
|
||||||
|
59.8107402 170.0214767
|
||||||
|
63.28329598 179.9793091
|
||||||
|
66.74330971 189.9777985
|
||||||
|
70.18486106 199.9863586
|
||||||
|
73.60028459 209.9743118
|
||||||
|
77.00348012 219.9716187
|
||||||
|
80.40250057 229.9917068
|
||||||
|
83.77295968 239.956543
|
||||||
|
87.14592329 249.9542999
|
||||||
|
90.51287247 259.951004
|
||||||
|
93.87840797 269.9521942
|
||||||
|
97.24650837 279.9622955
|
||||||
|
100.6056404 289.9507294
|
||||||
|
103.9689725 299.9463196
|
||||||
|
107.3335317 309.9401703
|
||||||
|
109.0114567 314.9165039
|
||||||
|
110.6735137 319.8454895
|
||||||
|
112.7047006 325.8605194
|
||||||
|
114.0035247 329.7149658
|
||||||
|
|
||||||
|
|
79
tecs/inp/r10403.inp
Normal file
79
tecs/inp/r10403.inp
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
sens=r10403
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=3250 ! setpoint limit (automatic if omitted)
|
||||||
|
type=RhFe ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=300uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
10.6589403 3.603681803
|
||||||
|
10.74693977 3.808842421
|
||||||
|
10.83184562 4.011125088
|
||||||
|
10.91174656 4.204480171
|
||||||
|
11.07008341 4.605695724
|
||||||
|
11.22122242 4.993436098
|
||||||
|
11.41199261 5.50510931
|
||||||
|
11.65901085 6.211949348
|
||||||
|
11.91981091 7.012576103
|
||||||
|
12.2204079 8.014651299
|
||||||
|
12.50069799 9.034644127
|
||||||
|
12.77010674 10.10183287
|
||||||
|
13.00552529 11.11413336
|
||||||
|
13.22311022 12.11994553
|
||||||
|
13.42717567 13.12845087
|
||||||
|
13.61233701 14.10592365
|
||||||
|
13.79031137 15.10077524
|
||||||
|
13.95889108 16.09677029
|
||||||
|
14.11560108 17.07359982
|
||||||
|
14.26661806 18.05983448
|
||||||
|
14.40984191 19.03727055
|
||||||
|
14.5506561 20.03670979
|
||||||
|
14.69458498 21.09279442
|
||||||
|
14.90837715 22.72693634
|
||||||
|
15.10083847 24.24472809
|
||||||
|
15.30573011 25.89060211
|
||||||
|
15.50466727 27.49477291
|
||||||
|
15.70943846 29.14482689
|
||||||
|
15.94295831 30.97421741
|
||||||
|
16.22611694 33.10346222
|
||||||
|
16.65634655 36.1368618
|
||||||
|
17.12132175 39.14064407
|
||||||
|
17.61812467 42.07350922
|
||||||
|
18.17453481 45.08229637
|
||||||
|
18.77835056 48.08135033
|
||||||
|
19.21609154 50.11287498
|
||||||
|
20.37406579 55.07047844
|
||||||
|
21.66598185 60.0625267
|
||||||
|
23.07960366 65.09007263
|
||||||
|
24.58132513 70.08819199
|
||||||
|
26.15302615 75.05251312
|
||||||
|
27.77673525 79.97599792
|
||||||
|
29.46796366 84.94778442
|
||||||
|
31.18561739 89.8794136
|
||||||
|
33.0060656 95.01772308
|
||||||
|
34.81426904 100.0529938
|
||||||
|
38.43009061 110.0272751
|
||||||
|
42.07047262 120.0328369
|
||||||
|
45.70143982 130.033226
|
||||||
|
49.31827048 140.0540085
|
||||||
|
52.89095876 150.0311432
|
||||||
|
56.43606152 160.0155334
|
||||||
|
59.95774205 170.0206146
|
||||||
|
63.43579175 179.9800644
|
||||||
|
66.90180014 189.9785233
|
||||||
|
70.34817459 199.9858704
|
||||||
|
73.7683642 209.9743729
|
||||||
|
77.17653595 219.9694138
|
||||||
|
80.57844445 229.9915466
|
||||||
|
83.95262042 239.9578171
|
||||||
|
87.32915214 249.9561996
|
||||||
|
90.69928285 259.9510498
|
||||||
|
94.06762515 269.9521942
|
||||||
|
97.43635403 279.9628296
|
||||||
|
100.7974683 289.9478302
|
||||||
|
104.1636115 299.9465179
|
||||||
|
107.5305484 309.9395905
|
||||||
|
109.2074342 314.913208
|
||||||
|
110.8721465 319.8458862
|
||||||
|
112.9024567 325.8596039
|
||||||
|
114.2030693 329.7140808
|
||||||
|
|
79
tecs/inp/r10409.inp
Normal file
79
tecs/inp/r10409.inp
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
sens=r10409
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=3250 ! setpoint limit (automatic if omitted)
|
||||||
|
type=RhFe ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=300uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
9.729170415 3.599108246
|
||||||
|
9.807471838 3.803321687
|
||||||
|
9.881845675 4.001753074
|
||||||
|
9.957265507 4.207103188
|
||||||
|
10.10350 4.61816441
|
||||||
|
10.24228875 5.021928137
|
||||||
|
10.410785 5.528922116
|
||||||
|
10.63105014 6.237552611
|
||||||
|
10.86503901 7.049164946
|
||||||
|
11.13387651 8.061395715
|
||||||
|
11.38170419 9.080734725
|
||||||
|
11.60957717 10.0976095
|
||||||
|
11.8195621 11.11087015
|
||||||
|
12.01415805 12.12273009
|
||||||
|
12.19446706 13.12911881
|
||||||
|
12.36283488 14.13005143
|
||||||
|
12.51995943 15.12442647
|
||||||
|
12.66935165 16.11579786
|
||||||
|
12.81007653 17.10486711
|
||||||
|
12.94391933 18.09019724
|
||||||
|
13.07237096 19.0755345
|
||||||
|
13.1949312 20.05820485
|
||||||
|
13.32639946 21.14015386
|
||||||
|
13.51103315 22.72198464
|
||||||
|
13.69095764 24.31474541
|
||||||
|
13.87325086 25.94197347
|
||||||
|
14.05668986 27.58107954
|
||||||
|
14.24189955 29.21911493
|
||||||
|
14.45529297 31.0435872
|
||||||
|
14.71310716 33.15361727
|
||||||
|
15.10856187 36.16515301
|
||||||
|
15.54177718 39.16494333
|
||||||
|
16.01885961 42.16002193
|
||||||
|
16.5427227 45.15075969
|
||||||
|
17.11695755 48.14860829
|
||||||
|
17.52725932 50.1456511
|
||||||
|
18.64965429 55.14566494
|
||||||
|
19.89781828 60.1434804
|
||||||
|
21.25761587 65.13728124
|
||||||
|
22.71931573 70.14353926
|
||||||
|
24.26164205 75.14741315
|
||||||
|
25.87046285 80.14389681
|
||||||
|
27.53314172 85.14013394
|
||||||
|
29.23531558 90.13490689
|
||||||
|
30.9691481 95.12797829
|
||||||
|
32.72753293 100.1229978
|
||||||
|
36.27911766 110.110687
|
||||||
|
39.85278169 120.1148387
|
||||||
|
43.41870181 130.1173515
|
||||||
|
46.96443291 140.1164923
|
||||||
|
50.48288963 150.1148961
|
||||||
|
53.97146147 160.1096025
|
||||||
|
57.43175462 170.1069592
|
||||||
|
60.86523374 180.1062916
|
||||||
|
64.27479903 190.1032814
|
||||||
|
67.66523646 200.1075773
|
||||||
|
71.03671919 210.1139431
|
||||||
|
74.39215164 220.1093504
|
||||||
|
77.73577068 230.1108131
|
||||||
|
81.07100223 240.1174299
|
||||||
|
84.3953144 250.1080443
|
||||||
|
87.71790769 260.1094722
|
||||||
|
91.03856598 270.1123165
|
||||||
|
94.35407656 280.1091028
|
||||||
|
97.67693531 290.1226426
|
||||||
|
100.9949832 300.1250442
|
||||||
|
104.3179636 310.129495
|
||||||
|
105.9796676 315.1276046
|
||||||
|
107.6379454 320.1110806
|
||||||
|
109.6422158 326.1268823
|
||||||
|
111.0285935 330.2873083
|
||||||
|
|
78
tecs/inp/r10410.inp
Normal file
78
tecs/inp/r10410.inp
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
sens=r10410
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=3250 ! setpoint limit (automatic if omitted)
|
||||||
|
type=RhFe ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=300uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
12.58068823 3.598806592
|
||||||
|
12.66306084 3.803442312
|
||||||
|
12.7410223 4.001680131
|
||||||
|
12.8210338 4.20709764
|
||||||
|
12.97710152 4.618235636
|
||||||
|
13.1230898 5.022066963
|
||||||
|
13.29867076 5.528799323
|
||||||
|
13.52929365 6.237803077
|
||||||
|
13.77508522 7.048934695
|
||||||
|
14.0576336 8.062176278
|
||||||
|
14.31773149 9.080256293
|
||||||
|
14.55677242 10.09779666
|
||||||
|
14.77662013 11.11102988
|
||||||
|
14.97981346 12.12292899
|
||||||
|
15.16826951 13.12994855
|
||||||
|
15.3446071 14.13025492
|
||||||
|
15.50884301 15.12513888
|
||||||
|
15.66392514 16.1156102
|
||||||
|
15.81066881 17.10374642
|
||||||
|
15.95077541 18.09019031
|
||||||
|
16.08462175 19.07454745
|
||||||
|
16.21359962 20.05822306
|
||||||
|
16.35073534 21.14237772
|
||||||
|
16.5449868 22.72232486
|
||||||
|
16.73482941 24.31226008
|
||||||
|
16.92775484 25.93997908
|
||||||
|
17.12305555 27.57929224
|
||||||
|
17.32211024 29.22035018
|
||||||
|
17.55294293 31.04373335
|
||||||
|
17.83386905 33.15392272
|
||||||
|
18.26843841 36.16462578
|
||||||
|
18.74828892 39.16600646
|
||||||
|
19.2817418 42.16202069
|
||||||
|
19.86905005 45.151956
|
||||||
|
20.51666968 48.14943787
|
||||||
|
20.98003721 50.14554243
|
||||||
|
22.25058732 55.1451726
|
||||||
|
23.66833689 60.14434928
|
||||||
|
25.21554413 65.13988696
|
||||||
|
26.87946909 70.1441475
|
||||||
|
28.63762957 75.14621884
|
||||||
|
30.47197022 80.14332999
|
||||||
|
32.36866037 85.14028546
|
||||||
|
34.31154667 90.13418258
|
||||||
|
36.2901667 95.12906136
|
||||||
|
38.29519638 100.1218635
|
||||||
|
42.35015193 110.1119297
|
||||||
|
46.42928475 120.1158606
|
||||||
|
50.49939958 130.1172013
|
||||||
|
54.5449155 140.1161408
|
||||||
|
58.55936918 150.1136936
|
||||||
|
62.54034881 160.1100822
|
||||||
|
66.48828165 170.1071216
|
||||||
|
70.40623874 180.1059648
|
||||||
|
74.29591264 190.1031048
|
||||||
|
78.16494783 200.1090007
|
||||||
|
82.01248451 210.1129226
|
||||||
|
85.84042483 220.1097379
|
||||||
|
89.65721885 230.1112076
|
||||||
|
93.46273224 240.1166241
|
||||||
|
97.25778359 250.1091999
|
||||||
|
101.0479148 260.1080664
|
||||||
|
104.8374411 270.1144818
|
||||||
|
108.6223805 280.1089581
|
||||||
|
112.4145757 290.1237288
|
||||||
|
116.2017584 300.122388
|
||||||
|
119.9960341 310.13087
|
||||||
|
121.891559 315.1259639
|
||||||
|
123.784515 320.1104011
|
||||||
|
126.0719231 326.1321421
|
||||||
|
127.6521371 330.2883009
|
79
tecs/inp/r10411.inp
Normal file
79
tecs/inp/r10411.inp
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
sens=r10411
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=3250 ! setpoint limit (automatic if omitted)
|
||||||
|
type=RhFe ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=300uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
11.15241065 3.598549137
|
||||||
|
11.23534187 3.803801167
|
||||||
|
11.31417869 4.001440484
|
||||||
|
11.39446382 4.207125102
|
||||||
|
11.55083746 4.618284438
|
||||||
|
11.69842223 5.021909944
|
||||||
|
11.87649662 5.528810983
|
||||||
|
12.11219681 6.237523663
|
||||||
|
12.36703307 7.048919689
|
||||||
|
12.66213424 8.061683764
|
||||||
|
12.93411426 9.080763591
|
||||||
|
13.18400196 10.0972527
|
||||||
|
13.41515005 11.11236792
|
||||||
|
13.62886869 12.12261162
|
||||||
|
13.82741367 13.12828524
|
||||||
|
14.01251087 14.12897739
|
||||||
|
14.18572384 15.12566897
|
||||||
|
14.34898385 16.11534564
|
||||||
|
14.50367713 17.10325811
|
||||||
|
14.65146126 18.09073308
|
||||||
|
14.79249557 19.07446221
|
||||||
|
14.92791938 20.05810414
|
||||||
|
15.07178961 21.14144212
|
||||||
|
15.27497374 22.72337602
|
||||||
|
15.47341191 24.31361868
|
||||||
|
15.67373418 25.94066733
|
||||||
|
15.87501014 27.58063058
|
||||||
|
16.07999454 29.2214453
|
||||||
|
16.31390726 31.04173729
|
||||||
|
16.59872316 33.15457836
|
||||||
|
17.03404068 36.16366638
|
||||||
|
17.5114942 39.16653005
|
||||||
|
18.03687617 42.16192419
|
||||||
|
18.6133981 45.15116657
|
||||||
|
19.24715751 48.1484099
|
||||||
|
19.69888489 50.14523557
|
||||||
|
20.9337894 55.14464977
|
||||||
|
22.30776135 60.14418669
|
||||||
|
23.80703205 65.14028307
|
||||||
|
25.41612949 70.14212492
|
||||||
|
27.11585546 75.14581757
|
||||||
|
28.88798858 80.14199972
|
||||||
|
30.72056809 85.14054741
|
||||||
|
32.597439 90.13576567
|
||||||
|
34.50920781 95.12947398
|
||||||
|
36.4461102 100.1222304
|
||||||
|
40.36410719 110.111688
|
||||||
|
44.30568855 120.1163428
|
||||||
|
48.24088591 130.117383
|
||||||
|
52.15368827 140.1159503
|
||||||
|
56.03751264 150.1148139
|
||||||
|
59.88873729 160.109784
|
||||||
|
63.70904405 170.1066634
|
||||||
|
67.50096353 180.1053116
|
||||||
|
71.26508067 190.1040357
|
||||||
|
75.01105085 200.1092107
|
||||||
|
78.73559294 210.1115566
|
||||||
|
82.44189545 220.1104795
|
||||||
|
86.13644857 230.110938
|
||||||
|
89.82284715 240.1166013
|
||||||
|
93.49682661 250.1088672
|
||||||
|
97.16763987 260.1074244
|
||||||
|
100.8380921 270.1118291
|
||||||
|
104.5031782 280.1110746
|
||||||
|
108.1752369 290.1234121
|
||||||
|
111.8428997 300.1248295
|
||||||
|
115.5181419 310.1320373
|
||||||
|
117.3533456 315.1268508
|
||||||
|
119.1870942 320.1113579
|
||||||
|
121.4010369 326.1289334
|
||||||
|
122.9334825 330.2865207
|
||||||
|
|
80
tecs/inp/r10413.inp
Normal file
80
tecs/inp/r10413.inp
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
sens=r10413
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=3250 ! setpoint limit (automatic if omitted)
|
||||||
|
type=RhFe ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=300uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
11.42559142 3.598385454
|
||||||
|
11.51171143 3.803268005
|
||||||
|
11.59353158 4.00157268
|
||||||
|
11.67688406 4.207329437
|
||||||
|
11.82837068 4.618144037
|
||||||
|
11.98394694 5.021858348
|
||||||
|
12.17018175 5.528789092
|
||||||
|
12.41496844 6.237407002
|
||||||
|
12.67676917 7.049918401
|
||||||
|
12.97681666 8.062010991
|
||||||
|
13.25382567 9.080662996
|
||||||
|
13.50835617 10.09774919
|
||||||
|
13.74296812 11.11225719
|
||||||
|
13.96076974 12.12325441
|
||||||
|
14.16237372 13.12900439
|
||||||
|
14.34991632 14.12937794
|
||||||
|
14.52687058 15.12553459
|
||||||
|
14.69279042 16.11656119
|
||||||
|
14.84977516 17.10273663
|
||||||
|
14.9998211 18.08966786
|
||||||
|
15.14319204 19.07490412
|
||||||
|
15.2802414 20.05761844
|
||||||
|
15.42750157 21.13974046
|
||||||
|
15.63309244 22.72136546
|
||||||
|
15.8342691 24.31297152
|
||||||
|
16.03710799 25.94238429
|
||||||
|
16.24060934 27.57905532
|
||||||
|
16.44705583 29.22007694
|
||||||
|
16.68264142 31.03924792
|
||||||
|
16.96834168 33.154185
|
||||||
|
17.40474518 36.16469158
|
||||||
|
17.88252873 39.167185
|
||||||
|
18.40609557 42.1601927
|
||||||
|
18.98205423 45.14999317
|
||||||
|
19.61161709 48.148469
|
||||||
|
20.06265581 50.14456657
|
||||||
|
21.29013015 55.14342488
|
||||||
|
22.65571481 60.14400512
|
||||||
|
24.14456426 65.13972115
|
||||||
|
25.74032261 70.14359461
|
||||||
|
27.42759318 75.14666394
|
||||||
|
29.1857745 80.14139051
|
||||||
|
31.00465734 85.13905494
|
||||||
|
32.86713162 90.13551272
|
||||||
|
34.76469983 95.12921124
|
||||||
|
36.68657447 100.122786
|
||||||
|
40.57669938 110.1125852
|
||||||
|
44.49072096 120.1168373
|
||||||
|
48.39791863 130.1181727
|
||||||
|
52.28333375 140.1163239
|
||||||
|
56.14094126 150.1161882
|
||||||
|
59.965605 160.1110684
|
||||||
|
63.75889725 170.1076962
|
||||||
|
67.5243713 180.1055757
|
||||||
|
71.26170491 190.102184
|
||||||
|
74.98010225 200.108561
|
||||||
|
78.67818533 210.1126084
|
||||||
|
82.35693215 220.1089513
|
||||||
|
86.02412177 230.109857
|
||||||
|
89.68288095 240.114188
|
||||||
|
93.32885021 250.1083083
|
||||||
|
96.97121127 260.1089139
|
||||||
|
100.6135982 270.1128213
|
||||||
|
104.2488495 280.1090995
|
||||||
|
107.8915544 290.124649
|
||||||
|
111.531171 300.1243045
|
||||||
|
115.1764906 310.1293198
|
||||||
|
116.9972804 315.1256513
|
||||||
|
118.8149278 320.1110566
|
||||||
|
121.0114513 326.1298075
|
||||||
|
122.530488 330.2868637
|
||||||
|
|
||||||
|
|
69
tecs/inp/r3509.inp
Normal file
69
tecs/inp/r3509.inp
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
sens=r3509
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=325 ! setpoint limit (automatic if omitted)
|
||||||
|
type=RhFe ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=300uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
form=loglog
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
1.53 1.001
|
||||||
|
1.592 1.3
|
||||||
|
1.654 1.7
|
||||||
|
1.668 1.8
|
||||||
|
1.685 1.9
|
||||||
|
1.696 2
|
||||||
|
1.729 2.2
|
||||||
|
1.78 2.5
|
||||||
|
1.85 3
|
||||||
|
1.99 4
|
||||||
|
2.014 4.21
|
||||||
|
2.066 4.6
|
||||||
|
2.116 5
|
||||||
|
2.176 5.5
|
||||||
|
2.234 6
|
||||||
|
2.3 6.6
|
||||||
|
2.362 7.2
|
||||||
|
2.43 7.9
|
||||||
|
2.504 8.7
|
||||||
|
2.573 9.5
|
||||||
|
2.645 10.4
|
||||||
|
2.72 11.4
|
||||||
|
2.796 12.5
|
||||||
|
2.873 13.7
|
||||||
|
2.95 15
|
||||||
|
3.029 16.4
|
||||||
|
3.11 18
|
||||||
|
3.191 19.7
|
||||||
|
3.277 21.6
|
||||||
|
3.365 23.7
|
||||||
|
3.458 26
|
||||||
|
3.558 28.5
|
||||||
|
3.666 31.2
|
||||||
|
3.793 34.2
|
||||||
|
3.941 37.5
|
||||||
|
4.118 41.1
|
||||||
|
4.336 45.1
|
||||||
|
4.605 49.5
|
||||||
|
4.93 54.3
|
||||||
|
5.319 59.5
|
||||||
|
5.788 65.2
|
||||||
|
6.349 71.5
|
||||||
|
6.904 77.348
|
||||||
|
7.634 84.8
|
||||||
|
8.471 93
|
||||||
|
9.412 102
|
||||||
|
10.453 111.8
|
||||||
|
11.607 122.6
|
||||||
|
12.865 134.4
|
||||||
|
14.241 147.4
|
||||||
|
15.729 161.6
|
||||||
|
17.347 177.2
|
||||||
|
19.1 194.3
|
||||||
|
20.999 213
|
||||||
|
23.066 233.5
|
||||||
|
25.321 256
|
||||||
|
27.037 273.15
|
||||||
|
29.724 300
|
||||||
|
32.733 330
|
||||||
|
|
||||||
|
|
69
tecs/inp/r3510.inp
Normal file
69
tecs/inp/r3510.inp
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
sens=r3510
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=325 ! setpoint limit (automatic if omitted)
|
||||||
|
type=RhFe ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=300uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
form=loglog
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
1.433 1.001
|
||||||
|
1.515 1.3
|
||||||
|
1.597 1.7
|
||||||
|
1.626 1.8
|
||||||
|
1.638 1.9
|
||||||
|
1.65 2
|
||||||
|
1.681 2.2
|
||||||
|
1.728 2.5
|
||||||
|
1.812 3
|
||||||
|
1.962 4
|
||||||
|
1.989 4.21
|
||||||
|
2.04 4.6
|
||||||
|
2.09 5
|
||||||
|
2.151 5.5
|
||||||
|
2.209 6
|
||||||
|
2.274 6.6
|
||||||
|
2.337 7.2
|
||||||
|
2.405 7.9
|
||||||
|
2.479 8.7
|
||||||
|
2.547 9.5
|
||||||
|
2.62 10.4
|
||||||
|
2.695 11.4
|
||||||
|
2.771 12.5
|
||||||
|
2.848 13.7
|
||||||
|
2.925 15
|
||||||
|
3.005 16.4
|
||||||
|
3.085 18
|
||||||
|
3.167 19.7
|
||||||
|
3.253 21.6
|
||||||
|
3.341 23.7
|
||||||
|
3.434 26
|
||||||
|
3.534 28.5
|
||||||
|
3.643 31.2
|
||||||
|
3.769 34.2
|
||||||
|
3.918 37.5
|
||||||
|
4.095 41.1
|
||||||
|
4.313 45.1
|
||||||
|
4.582 49.5
|
||||||
|
4.909 54.3
|
||||||
|
5.298 59.5
|
||||||
|
5.767 65.2
|
||||||
|
6.33 71.5
|
||||||
|
6.885 77.348
|
||||||
|
7.615 84.8
|
||||||
|
8.451 93
|
||||||
|
9.392 102
|
||||||
|
10.433 111.8
|
||||||
|
11.586 122.6
|
||||||
|
12.843 134.4
|
||||||
|
14.219 147.4
|
||||||
|
15.707 161.6
|
||||||
|
17.324 177.2
|
||||||
|
19.077 194.3
|
||||||
|
20.975 213
|
||||||
|
23.041 233.5
|
||||||
|
25.296 256
|
||||||
|
27.011 273.15
|
||||||
|
29.697 300
|
||||||
|
32.705 330
|
||||||
|
|
||||||
|
|
6
tecs/inp/rdr11.cfg
Normal file
6
tecs/inp/rdr11.cfg
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
sensA.type=m sensA.curve=rx1976 sensA.scale=0.01
|
||||||
|
dev="LTF dilution cryostat"
|
||||||
|
tlimit=12.0 resist=708 maxPower=0.01 powfact=0.03
|
||||||
|
prop=50 int=10 deriv=0
|
||||||
|
lscfg="INCRV C,0;LINEAR C:2,0.01,1,2;DISPFLD 2,C,4;DISPFLD 3,A,3;DISPLAY:3"
|
||||||
|
|
6
tecs/inp/rdr12.cfg
Normal file
6
tecs/inp/rdr12.cfg
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
sensA.type=m sensA.curve=rx1611 sensA.scale=0.01
|
||||||
|
dev="LTF dilution cryostat"
|
||||||
|
tlimit=12.0 resist=708 maxPower=0.01 powfact=0.03
|
||||||
|
prop=50 int=10 deriv=0
|
||||||
|
lscfg="INCRV C,0;LINEAR C:2,0.01,1,2;DISPFLD 2,C,4;DISPFLD 3,A,3;DISPLAY:3"
|
||||||
|
|
124
tecs/inp/rhfe0734.inp
Normal file
124
tecs/inp/rhfe0734.inp
Normal file
@ -0,0 +1,124 @@
|
|||||||
|
sens=rhfe0734
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=3250 ! setpoint limit (automatic if omitted)
|
||||||
|
type=RhFe ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=300uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
+1.68 0.5831
|
||||||
|
+1.73 0.8616
|
||||||
|
+1.78 1.1426
|
||||||
|
+1.83 1.4276
|
||||||
|
+1.88 1.7179
|
||||||
|
+1.93 2.0148
|
||||||
|
+1.98 2.3195
|
||||||
|
+2.03 2.6331
|
||||||
|
+2.08 2.957
|
||||||
|
+2.13 3.292
|
||||||
|
+2.18 3.6391
|
||||||
|
+2.23 3.9993
|
||||||
|
+2.28 4.3734
|
||||||
|
+2.33 4.7622
|
||||||
|
+2.38 5.1668
|
||||||
|
+2.43 5.5881
|
||||||
|
+2.48 6.0273
|
||||||
|
+2.53 6.4856
|
||||||
|
+2.58 6.9644
|
||||||
|
+2.63 7.465
|
||||||
|
+2.68 7.9888
|
||||||
|
+2.73 8.5374
|
||||||
|
+2.78 9.1123
|
||||||
|
+2.83 9.7149
|
||||||
|
+2.88 10.3469
|
||||||
|
+2.93 11.0099
|
||||||
|
+2.98 11.7059
|
||||||
|
+3.03 12.4366
|
||||||
|
+3.08 13.2041
|
||||||
|
+3.13 14.0107
|
||||||
|
+3.18 14.8583
|
||||||
|
+3.23 15.7491
|
||||||
|
+3.28 16.685
|
||||||
|
+3.33 17.6671
|
||||||
|
+3.38 18.6961
|
||||||
|
+3.43 19.7717
|
||||||
|
+3.48 20.8922
|
||||||
|
+3.53 22.0546
|
||||||
|
+3.58 23.254
|
||||||
|
+3.63 24.4842
|
||||||
|
+3.68 25.7372
|
||||||
|
+3.73 27.0041
|
||||||
|
+3.78 28.275
|
||||||
|
+3.83 29.5403
|
||||||
|
+3.88 30.7913
|
||||||
|
+3.93 32.0212
|
||||||
|
+3.98 33.2277
|
||||||
|
+4.03 34.4064
|
||||||
|
+4.08 35.5549
|
||||||
|
+4.13 36.6724
|
||||||
|
+4.18 37.7591
|
||||||
|
+4.23 38.8156
|
||||||
|
+4.28 39.8428
|
||||||
|
+4.33 40.8421
|
||||||
|
+4.43 42.7622
|
||||||
|
+4.53 44.5869
|
||||||
|
+4.63 46.3269
|
||||||
|
+4.73 47.992
|
||||||
|
+4.83 49.5908
|
||||||
|
+4.93 51.1309
|
||||||
|
+5.03 52.6189
|
||||||
|
+5.13 54.0603
|
||||||
|
+5.23 55.4602
|
||||||
|
+5.33 56.8226
|
||||||
|
+5.43 58.1513
|
||||||
|
+5.53 59.4494
|
||||||
|
+5.63 60.7198
|
||||||
|
+5.73 61.9649
|
||||||
|
+5.83 63.1869
|
||||||
|
+5.93 64.3876
|
||||||
|
+6.03 65.5689
|
||||||
|
+6.13 66.7323
|
||||||
|
+6.23 67.8791
|
||||||
|
+6.33 69.0106
|
||||||
|
+6.43 70.1279
|
||||||
|
+6.53 71.232
|
||||||
|
+6.63 72.324
|
||||||
|
+6.73 73.4046
|
||||||
|
+6.83 74.4746
|
||||||
|
+6.93 75.5348
|
||||||
|
+7.03 76.5858
|
||||||
|
+7.13 77.6282
|
||||||
|
+7.23 78.6626
|
||||||
|
+7.33 79.6895
|
||||||
|
+7.43 80.7094
|
||||||
|
+7.53 81.7228
|
||||||
|
+7.63 82.7301
|
||||||
|
+7.73 83.7316
|
||||||
|
+7.83 84.7278
|
||||||
|
+7.93 85.7189
|
||||||
|
+8.03 86.7054
|
||||||
|
+8.13 87.6875
|
||||||
|
+8.23 88.6655
|
||||||
|
+8.33 89.6396
|
||||||
|
+9.33 99.2177
|
||||||
|
+10.33 108.6138
|
||||||
|
+11.33 117.9369
|
||||||
|
+12.33 127.252
|
||||||
|
+13.33 136.5978
|
||||||
|
+14.33 145.9964
|
||||||
|
+15.33 155.4592
|
||||||
|
+16.33 164.9901
|
||||||
|
+17.33 174.5886
|
||||||
|
+18.33 184.251
|
||||||
|
+19.33 193.9718
|
||||||
|
+20.33 203.7444
|
||||||
|
+21.33 213.5617
|
||||||
|
+22.33 223.4166
|
||||||
|
+23.33 233.3019
|
||||||
|
+24.33 243.211
|
||||||
|
+25.33 253.1376
|
||||||
|
+26.33 263.076
|
||||||
|
+27.33 273.0207
|
||||||
|
+29.33 292.9108
|
||||||
|
+31.33 312.7801
|
||||||
|
+33.33 332.6028
|
||||||
|
|
53
tecs/inp/rhfe4140.inp
Normal file
53
tecs/inp/rhfe4140.inp
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
sens=rhfe4140
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=3250 ! setpoint limit (automatic if omitted)
|
||||||
|
type=RhFe ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=300uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
1.58190 1.468
|
||||||
|
1.67400 1.993
|
||||||
|
1.80593 2.791
|
||||||
|
1.87062 3.208
|
||||||
|
1.98346 3.979
|
||||||
|
2.01446 4.201
|
||||||
|
2.17064 5.409
|
||||||
|
2.35384 7.032
|
||||||
|
2.45031 7.993
|
||||||
|
2.63333 10.061
|
||||||
|
2.84964 13.002
|
||||||
|
3.03325 16.021
|
||||||
|
3.23588 20.015
|
||||||
|
3.45195 24.998
|
||||||
|
3.55119 27.449
|
||||||
|
3.65991 30.129
|
||||||
|
3.87224 35.144
|
||||||
|
4.10610 40.104
|
||||||
|
4.68439 50.174
|
||||||
|
5.43016 60.491
|
||||||
|
6.25613 70.218
|
||||||
|
7.22886 80.535
|
||||||
|
8.24755 90.660
|
||||||
|
9.29999 100.749
|
||||||
|
11.9067 125.232
|
||||||
|
14.6048 150.712
|
||||||
|
17.1906 175.593
|
||||||
|
19.7720 200.866
|
||||||
|
22.2457 225.394
|
||||||
|
24.7721 250.638
|
||||||
|
27.0084 273.062
|
||||||
|
27.0370 273.347
|
||||||
|
29.7624 300.665
|
||||||
|
32.154 325
|
||||||
|
34.638 350
|
||||||
|
37.136 375
|
||||||
|
39.652 400
|
||||||
|
42.189 425
|
||||||
|
44.747 450
|
||||||
|
47.329 475
|
||||||
|
49.937 500
|
||||||
|
60.644 600
|
||||||
|
71.825 700
|
||||||
|
83.522 800
|
||||||
|
|
||||||
|
|
66
tecs/inp/rhfe8119.inp
Normal file
66
tecs/inp/rhfe8119.inp
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
sens=rhfe8119
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=3250 ! setpoint limit (automatic if omitted)
|
||||||
|
type=RhFe ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=300uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
1.6835 1.0
|
||||||
|
1.7566 1.408
|
||||||
|
1.7745 1.508
|
||||||
|
1.7925 1.609
|
||||||
|
1.8617 2.006
|
||||||
|
1.9298 2.41
|
||||||
|
1.9932 2.8
|
||||||
|
2.0569 3.208
|
||||||
|
2.1158 3.602
|
||||||
|
2.1776 4.032
|
||||||
|
2.2019 4.207
|
||||||
|
2.2559 4.607
|
||||||
|
2.3591 5.42
|
||||||
|
2.4535 6.224
|
||||||
|
2.5469 7.085
|
||||||
|
2.6428 8.044
|
||||||
|
2.7344 9.041
|
||||||
|
2.8239 10.097
|
||||||
|
2.9026 11.099
|
||||||
|
3.0388 13.018
|
||||||
|
3.1086 14.103
|
||||||
|
3.2263 16.105
|
||||||
|
3.3306 18.075
|
||||||
|
3.4277 20.081
|
||||||
|
3.5359 22.497
|
||||||
|
3.6426 25.036
|
||||||
|
3.7436 27.529
|
||||||
|
3.8446 30.018
|
||||||
|
3.9485 32.539
|
||||||
|
4.0556 35.035
|
||||||
|
4.2955 40.16
|
||||||
|
4.8847 50.442
|
||||||
|
5.599 60.391
|
||||||
|
6.443 70.418
|
||||||
|
7.3254 79.886
|
||||||
|
8.3393 90.091
|
||||||
|
9.3943 100.318
|
||||||
|
12.1072 126.038
|
||||||
|
14.6989 150.738
|
||||||
|
17.2882 175.872
|
||||||
|
19.8227 200.897
|
||||||
|
22.3245 225.909
|
||||||
|
25.0177 253.046
|
||||||
|
27.0043 273.132
|
||||||
|
27.033 273.422
|
||||||
|
29.7561 300.957
|
||||||
|
32.138 325
|
||||||
|
34.625 350
|
||||||
|
37.126 375
|
||||||
|
39.645 400
|
||||||
|
42.185 425
|
||||||
|
44.747 450
|
||||||
|
47.333 475
|
||||||
|
49.944 500
|
||||||
|
60.669 600
|
||||||
|
71.872 700
|
||||||
|
83.594 800
|
||||||
|
|
||||||
|
|
65
tecs/inp/rhfe8244.inp
Normal file
65
tecs/inp/rhfe8244.inp
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
sens=rhfe8244
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=3250 ! setpoint limit (automatic if omitted)
|
||||||
|
type=RhFe ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=300uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
1.725 1.000
|
||||||
|
1.8003 1.405
|
||||||
|
1.8182 1.505
|
||||||
|
1.8369 1.608
|
||||||
|
1.9076 2.011
|
||||||
|
1.9742 2.406
|
||||||
|
2.0379 2.798
|
||||||
|
2.1019 3.207
|
||||||
|
2.1613 3.603
|
||||||
|
2.2206 4.016
|
||||||
|
2.2472 4.208
|
||||||
|
2.3013 4.609
|
||||||
|
2.4027 5.406
|
||||||
|
2.496 6.2
|
||||||
|
2.5855 7.02
|
||||||
|
2.6865 8.027
|
||||||
|
2.7792 9.035
|
||||||
|
2.867 10.073
|
||||||
|
2.9446 11.062
|
||||||
|
3.0836 13.023
|
||||||
|
3.148 14.022
|
||||||
|
3.2661 16.025
|
||||||
|
3.374 18.062
|
||||||
|
3.4691 20.026
|
||||||
|
3.5803 22.515
|
||||||
|
3.6853 25.021
|
||||||
|
3.786 27.512
|
||||||
|
3.8865 29.992
|
||||||
|
3.9919 32.551
|
||||||
|
4.0991 35.048
|
||||||
|
4.3341 40.073
|
||||||
|
4.9331 50.537
|
||||||
|
5.6366 60.342
|
||||||
|
6.4825 70.406
|
||||||
|
7.3813 80.053
|
||||||
|
8.4119 90.424
|
||||||
|
9.4424 100.416
|
||||||
|
12.0995 125.632
|
||||||
|
14.6813 150.259
|
||||||
|
17.2466 175.171
|
||||||
|
19.7776 200.18
|
||||||
|
22.4707 227.132
|
||||||
|
24.7622 250.24
|
||||||
|
27.0121 273.003
|
||||||
|
27.0474 273.361
|
||||||
|
29.7123 300.333
|
||||||
|
32.154 325
|
||||||
|
34.638 350
|
||||||
|
37.136 375
|
||||||
|
39.652 400
|
||||||
|
42.189 425
|
||||||
|
44.747 450
|
||||||
|
47.329 475
|
||||||
|
49.937 500
|
||||||
|
60.644 600
|
||||||
|
71.825 700
|
||||||
|
83.522 800
|
||||||
|
|
51
tecs/inp/rhfe8733.inp
Normal file
51
tecs/inp/rhfe8733.inp
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
sens=rhfe8733
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
type=RhFe ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
1.5 0.3
|
||||||
|
1.8843 1.403
|
||||||
|
1.9039 1.512
|
||||||
|
1.9202 1.602
|
||||||
|
1.9943 2.027
|
||||||
|
2.0584 2.406
|
||||||
|
2.1234 2.807
|
||||||
|
2.1851 3.203
|
||||||
|
2.2447 3.602
|
||||||
|
2.3004 3.99
|
||||||
|
2.3296 4.201
|
||||||
|
2.384 4.606
|
||||||
|
2.4846 5.399
|
||||||
|
2.579 6.204
|
||||||
|
2.6712 7.055
|
||||||
|
2.7701 8.05
|
||||||
|
2.8585 9.015
|
||||||
|
2.9456 10.045
|
||||||
|
3.0235 11.038
|
||||||
|
3.163 13.009
|
||||||
|
3.2269 14.005
|
||||||
|
3.3462 16.034
|
||||||
|
3.4507 18.011
|
||||||
|
3.5494 20.058
|
||||||
|
3.6584 22.508
|
||||||
|
3.7656 25.076
|
||||||
|
3.8655 27.552
|
||||||
|
3.9648 30.013
|
||||||
|
4.0684 32.538
|
||||||
|
4.1735 34.997
|
||||||
|
4.4278 40.426
|
||||||
|
5.0004 50.424
|
||||||
|
5.7174 60.443
|
||||||
|
6.558 70.46
|
||||||
|
7.4811 80.374
|
||||||
|
8.4707 90.355
|
||||||
|
9.5417 100.762
|
||||||
|
12.1855 125.915
|
||||||
|
14.8417 151.328
|
||||||
|
17.57 177.929
|
||||||
|
19.9341 201.373
|
||||||
|
22.4906 227.031
|
||||||
|
25.0243 252.655
|
||||||
|
27.0197 272.902
|
||||||
|
27.0698 273.411
|
||||||
|
29.6913 300.022
|
||||||
|
|
68
tecs/inp/ruox.inp
Normal file
68
tecs/inp/ruox.inp
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
sens=ruox
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=2 ! setpoint limit (automatic if omitted)
|
||||||
|
type=Special ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
excit=10uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
form=loglog
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
230000 1
|
||||||
|
226072 1.5
|
||||||
|
222012 2
|
||||||
|
210329 3
|
||||||
|
198151 4
|
||||||
|
187643 5
|
||||||
|
178843 6
|
||||||
|
171468 7
|
||||||
|
165280 8
|
||||||
|
160065 9
|
||||||
|
155637 10
|
||||||
|
151767 11
|
||||||
|
148389 12
|
||||||
|
145436 13
|
||||||
|
142813 14
|
||||||
|
140481 15
|
||||||
|
138397 16
|
||||||
|
136518 17
|
||||||
|
134812 18
|
||||||
|
133271 19
|
||||||
|
131859 20
|
||||||
|
130555 21
|
||||||
|
129358 22
|
||||||
|
128254 23
|
||||||
|
127220 24
|
||||||
|
126230 25
|
||||||
|
125316 26
|
||||||
|
124477 27
|
||||||
|
123702 28
|
||||||
|
122973 29
|
||||||
|
122284 30
|
||||||
|
121633 31
|
||||||
|
121016 32
|
||||||
|
120429 33
|
||||||
|
119872 34
|
||||||
|
119367 35
|
||||||
|
118841 36
|
||||||
|
118253 37
|
||||||
|
117738 38
|
||||||
|
117316 39
|
||||||
|
116914 40
|
||||||
|
113657 50
|
||||||
|
111329 60
|
||||||
|
109586 70
|
||||||
|
108602 77
|
||||||
|
108231 80
|
||||||
|
107147 90
|
||||||
|
106248 100
|
||||||
|
104529 125
|
||||||
|
103291 150
|
||||||
|
102362 175
|
||||||
|
101669 200
|
||||||
|
101148 225
|
||||||
|
100773 250
|
||||||
|
100556 270
|
||||||
|
100530 273
|
||||||
|
100001 295
|
||||||
|
100000 295.01
|
||||||
|
50000 300
|
||||||
|
|
89
tecs/inp/rx1611.inp
Normal file
89
tecs/inp/rx1611.inp
Normal file
@ -0,0 +1,89 @@
|
|||||||
|
sens=rx1611
|
||||||
|
unit=V ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=2 ! setpoint limit (automatic if omitted)
|
||||||
|
type=Special ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
excit=30uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
range=2 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (volts, cKelvin)
|
||||||
|
0.1 1206.521654
|
||||||
|
0.105 993.8222225
|
||||||
|
0.1103 824.4082243
|
||||||
|
0.1158 691.0146685
|
||||||
|
0.1216 583.2109748
|
||||||
|
0.1277 495.6595691
|
||||||
|
0.1341 424.1693739
|
||||||
|
0.1408 365.4568244
|
||||||
|
0.1478 316.9499646
|
||||||
|
0.1552 276.1386601
|
||||||
|
0.163 241.7266404
|
||||||
|
0.1712 212.626728
|
||||||
|
0.1798 187.9352325
|
||||||
|
0.1888 166.905356
|
||||||
|
0.1982 148.9221064
|
||||||
|
0.2081 133.3368629
|
||||||
|
0.2185 119.8072354
|
||||||
|
0.2294 108.0366429
|
||||||
|
0.2409 97.68815706
|
||||||
|
0.2529 88.65305941
|
||||||
|
0.2655 80.68121887
|
||||||
|
0.2788 73.58832758
|
||||||
|
0.2927 67.31900363
|
||||||
|
0.3073 61.72973563
|
||||||
|
0.3227 56.71224548
|
||||||
|
0.3388 52.23482387
|
||||||
|
0.3557 48.21039972
|
||||||
|
0.3735 44.57191657
|
||||||
|
0.3922 41.28323672
|
||||||
|
0.4118 38.31003269
|
||||||
|
0.4324 35.60812694
|
||||||
|
0.454 33.15299196
|
||||||
|
0.4767 30.91215327
|
||||||
|
0.5005 28.86745908
|
||||||
|
0.5255 26.99446317
|
||||||
|
0.5518 25.27322246
|
||||||
|
0.5794 23.69261318
|
||||||
|
0.6084 22.23685759
|
||||||
|
0.6388 20.89692543
|
||||||
|
0.6707 19.66021856
|
||||||
|
0.7042 18.51614313
|
||||||
|
0.7394 17.45569276
|
||||||
|
0.7764 16.47112933
|
||||||
|
0.8152 15.55795099
|
||||||
|
0.856 14.70755522
|
||||||
|
0.8988 13.91657457
|
||||||
|
0.9437 13.17986919
|
||||||
|
0.9909 12.49152745
|
||||||
|
1.0404 11.84919396
|
||||||
|
1.0924 11.24811677
|
||||||
|
1.147 10.68535851
|
||||||
|
1.2044 10.15734895
|
||||||
|
1.2646 9.662651321
|
||||||
|
1.3278 9.198237347
|
||||||
|
1.3942 8.761545253
|
||||||
|
1.4639 8.350940465
|
||||||
|
1.5371 7.9643521
|
||||||
|
1.614 7.599982053
|
||||||
|
1.6947 7.256655057
|
||||||
|
1.7794 6.932848325
|
||||||
|
1.8684 6.626884532
|
||||||
|
1.9618 6.337944626
|
||||||
|
2.0599 6.064660729
|
||||||
|
2.1629 5.806107119
|
||||||
|
2.271 5.561426086
|
||||||
|
2.3846 5.329430748
|
||||||
|
2.5038 5.109661957
|
||||||
|
2.629 4.901140994
|
||||||
|
2.7605 4.703186509
|
||||||
|
2.8985 4.515313629
|
||||||
|
3.0434 4.33680883
|
||||||
|
3.1956 4.16705561
|
||||||
|
3.3554 4.005611036
|
||||||
|
3.5232 3.851970924
|
||||||
|
3.6994 3.705686023
|
||||||
|
3.8844 3.566351517
|
||||||
|
4.0786 3.433598749
|
||||||
|
4.2825 3.307029581
|
||||||
|
4.4966 3.18629209
|
||||||
|
4.7214 3.071071466
|
||||||
|
4.9575 2.961038374
|
||||||
|
|
63
tecs/inp/rx1976.inp
Normal file
63
tecs/inp/rx1976.inp
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
sens=rx1976
|
||||||
|
unit=mV ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=2 ! setpoint limit (automatic if omitted)
|
||||||
|
type=Special ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
range=0
|
||||||
|
excit=30uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
curv ! curve mV,K (200 kOhm Range)
|
||||||
|
607.88 0.02
|
||||||
|
593.99 0.021
|
||||||
|
567.92 0.023
|
||||||
|
543.86 0.025
|
||||||
|
490.69 0.03
|
||||||
|
445.36 0.035
|
||||||
|
406.08 0.04
|
||||||
|
371.81 0.045
|
||||||
|
341.79 0.05
|
||||||
|
254.67 0.07
|
||||||
|
203.01 0.09
|
||||||
|
170.69 0.11
|
||||||
|
148.94 0.13
|
||||||
|
133.29 0.15
|
||||||
|
118.96 0.175
|
||||||
|
108.21 0.20
|
||||||
|
99.84 0.225
|
||||||
|
93.09 0.25
|
||||||
|
82.81 0.30
|
||||||
|
75.29 0.35
|
||||||
|
69.53 0.40
|
||||||
|
64.95 0.45
|
||||||
|
61.22 0.50
|
||||||
|
55.49 0.60
|
||||||
|
51.31 0.70
|
||||||
|
48.11 0.80
|
||||||
|
45.59 0.90
|
||||||
|
43.56 1.00
|
||||||
|
39.83 1.25
|
||||||
|
37.29 1.50
|
||||||
|
35.43 1.75
|
||||||
|
34.01 2.00
|
||||||
|
32.87 2.25
|
||||||
|
31.94 2.50
|
||||||
|
31.16 2.75
|
||||||
|
30.50 3.00
|
||||||
|
29.92 3.25
|
||||||
|
29.42 3.50
|
||||||
|
28.97 3.75
|
||||||
|
28.57 4.00
|
||||||
|
28.27 4.20
|
||||||
|
27.45 5.00
|
||||||
|
26.77 6.00
|
||||||
|
25.82 8.00
|
||||||
|
25.20 10.00
|
||||||
|
24.60 13.00
|
||||||
|
24.10 17.00
|
||||||
|
23.71 22.00
|
||||||
|
23.38 29.00
|
||||||
|
23.15 37.00
|
||||||
|
22.91 50.00
|
||||||
|
22.75 67.00
|
||||||
|
22.62 90.00
|
||||||
|
22.51 120.00
|
||||||
|
22.00 300.00
|
||||||
|
|
62
tecs/inp/rxdil.inp
Normal file
62
tecs/inp/rxdil.inp
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
sens=rxdil
|
||||||
|
unit=mV ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=2 ! setpoint limit (automatic if omitted)
|
||||||
|
type=Special ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
excit=30uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
range=2000 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (volts, cKelvin)
|
||||||
|
607.88 0.02
|
||||||
|
593.99 0.021
|
||||||
|
567.92 0.023
|
||||||
|
543.86 0.025
|
||||||
|
490.69 0.03
|
||||||
|
445.36 0.035
|
||||||
|
406.08 0.04
|
||||||
|
371.81 0.045
|
||||||
|
341.79 0.05
|
||||||
|
254.67 0.07
|
||||||
|
203.01 0.09
|
||||||
|
170.69 0.11
|
||||||
|
148.94 0.13
|
||||||
|
133.29 0.15
|
||||||
|
118.96 0.175
|
||||||
|
108.21 0.20
|
||||||
|
99.84 0.225
|
||||||
|
93.09 0.25
|
||||||
|
82.81 0.30
|
||||||
|
75.29 0.35
|
||||||
|
69.53 0.40
|
||||||
|
64.95 0.45
|
||||||
|
61.22 0.50
|
||||||
|
55.49 0.60
|
||||||
|
51.31 0.70
|
||||||
|
48.11 0.80
|
||||||
|
45.59 0.90
|
||||||
|
43.56 1.00
|
||||||
|
39.83 1.25
|
||||||
|
37.29 1.50
|
||||||
|
35.43 1.75
|
||||||
|
34.01 2.00
|
||||||
|
32.87 2.25
|
||||||
|
31.94 2.50
|
||||||
|
31.16 2.75
|
||||||
|
30.50 3.00
|
||||||
|
29.92 3.25
|
||||||
|
29.42 3.50
|
||||||
|
28.97 3.75
|
||||||
|
28.57 4.00
|
||||||
|
28.27 4.20
|
||||||
|
27.45 5.00
|
||||||
|
26.77 6.00
|
||||||
|
25.82 8.00
|
||||||
|
25.20 10.00
|
||||||
|
24.60 13.00
|
||||||
|
24.10 17.00
|
||||||
|
23.71 22.00
|
||||||
|
23.38 29.00
|
||||||
|
23.15 37.00
|
||||||
|
22.91 50.00
|
||||||
|
22.75 67.00
|
||||||
|
22.62 90.00
|
||||||
|
22.51 120.00
|
||||||
|
22.00 300.00
|
2
tecs/inp/std1.inp
Normal file
2
tecs/inp/std1.inp
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
sens=std1
|
||||||
|
curv=1
|
2
tecs/inp/std4.inp
Normal file
2
tecs/inp/std4.inp
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
sens=std4
|
||||||
|
curv=4
|
2
tecs/inp/std6.inp
Normal file
2
tecs/inp/std6.inp
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
sens=std6
|
||||||
|
curv=6
|
5
tecs/inp/sup4t.cfg
Normal file
5
tecs/inp/sup4t.cfg
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
sensA.type=m sensA.curve=ruox
|
||||||
|
sensB.type=h
|
||||||
|
dev="4 T vertical cryomagnet"
|
||||||
|
tlimit=273 resist=440 maxPower=5 full=4.6
|
||||||
|
prop=20 int=3 deriv=0
|
6
tecs/inp/tubby.cfg
Normal file
6
tecs/inp/tubby.cfg
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
sensA.type=m sensA.curve=x67
|
||||||
|
sensB.type=t sensB.curve=std4
|
||||||
|
sensD.type=s sensD.curve=x23167
|
||||||
|
dev="11 T horizontal SANS cryomagnet"
|
||||||
|
tlimit=310 resist=50 maxpower=12.5
|
||||||
|
prop=10 int=10 deriv=0
|
4
tecs/inp/tubby2.cfg
Normal file
4
tecs/inp/tubby2.cfg
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
sensC.type=s sensC.curve=x17627
|
||||||
|
dev="rotatable sample stick for 11 T cryomagnet"
|
||||||
|
tlimit=310 resist=50 maxpower=12.5
|
||||||
|
prop=10 int=10 deriv=0
|
157
tecs/inp/type_c.inp
Normal file
157
tecs/inp/type_c.inp
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
sens=type_c
|
||||||
|
unit=mV
|
||||||
|
type=TC ! kinked at 333.15 (scale=2)
|
||||||
|
curv
|
||||||
|
-0.135 263.15
|
||||||
|
0.135 283.15
|
||||||
|
0.273 293.15
|
||||||
|
0.412 303.15
|
||||||
|
0.554 313.15
|
||||||
|
0.699 323.15
|
||||||
|
0.845 333.15
|
||||||
|
0.994 338.15
|
||||||
|
1.144 343.15
|
||||||
|
1.297 348.15
|
||||||
|
1.451 353.15
|
||||||
|
1.607 358.15
|
||||||
|
1.766 363.15
|
||||||
|
1.925 368.15
|
||||||
|
2.087 373.15
|
||||||
|
2.25 378.15
|
||||||
|
2.415 383.15
|
||||||
|
2.581 388.15
|
||||||
|
2.749 393.15
|
||||||
|
2.919 398.15
|
||||||
|
3.089 403.15
|
||||||
|
3.261 408.15
|
||||||
|
3.435 413.15
|
||||||
|
3.609 418.15
|
||||||
|
3.785 423.15
|
||||||
|
3.962 428.15
|
||||||
|
4.141 433.15
|
||||||
|
4.32 438.15
|
||||||
|
4.5 443.15
|
||||||
|
4.682 448.15
|
||||||
|
4.864 453.15
|
||||||
|
5.047 458.15
|
||||||
|
5.231 463.15
|
||||||
|
5.416 468.15
|
||||||
|
5.602 473.15
|
||||||
|
5.788 478.15
|
||||||
|
5.976 483.15
|
||||||
|
6.164 488.15
|
||||||
|
6.352 493.15
|
||||||
|
6.541 498.15
|
||||||
|
6.731 503.15
|
||||||
|
6.922 508.15
|
||||||
|
7.113 513.15
|
||||||
|
7.304 518.15
|
||||||
|
7.496 523.15
|
||||||
|
7.688 528.15
|
||||||
|
7.881 533.15
|
||||||
|
8.074 538.15
|
||||||
|
8.268 543.15
|
||||||
|
8.461 548.15
|
||||||
|
8.655 553.15
|
||||||
|
8.85 558.15
|
||||||
|
9.044 563.15
|
||||||
|
9.239 568.15
|
||||||
|
9.434 573.15
|
||||||
|
9.629 578.15
|
||||||
|
9.824 583.15
|
||||||
|
10.02 588.15
|
||||||
|
10.215 593.15
|
||||||
|
10.411 598.15
|
||||||
|
10.606 603.15
|
||||||
|
10.802 608.15
|
||||||
|
10.997 613.15
|
||||||
|
11.193 618.15
|
||||||
|
11.388 623.15
|
||||||
|
11.584 628.15
|
||||||
|
11.779 633.15
|
||||||
|
11.974 638.15
|
||||||
|
12.169 643.15
|
||||||
|
12.364 648.15
|
||||||
|
12.559 653.15
|
||||||
|
12.753 658.15
|
||||||
|
12.948 663.15
|
||||||
|
13.142 668.15
|
||||||
|
13.336 673.15
|
||||||
|
13.53 678.15
|
||||||
|
13.723 683.15
|
||||||
|
13.916 688.15
|
||||||
|
14.109 693.15
|
||||||
|
14.302 698.15
|
||||||
|
14.494 703.15
|
||||||
|
14.686 708.15
|
||||||
|
14.878 713.15
|
||||||
|
15.069 718.15
|
||||||
|
15.26 723.15
|
||||||
|
15.451 728.15
|
||||||
|
15.641 733.15
|
||||||
|
15.831 738.15
|
||||||
|
16.02 743.15
|
||||||
|
16.209 748.15
|
||||||
|
16.397 753.15
|
||||||
|
16.585 758.15
|
||||||
|
16.773 763.15
|
||||||
|
16.96 768.15
|
||||||
|
17.147 773.15
|
||||||
|
17.333 778.15
|
||||||
|
17.519 783.15
|
||||||
|
17.704 788.15
|
||||||
|
17.889 793.15
|
||||||
|
18.074 798.15
|
||||||
|
18.257 803.15
|
||||||
|
18.623 813.15
|
||||||
|
18.987 823.15
|
||||||
|
19.349 833.15
|
||||||
|
19.709 843.15
|
||||||
|
20.066 853.15
|
||||||
|
20.422 863.15
|
||||||
|
20.775 873.15
|
||||||
|
21.125 883.15
|
||||||
|
21.474 893.15
|
||||||
|
21.82 903.15
|
||||||
|
22.163 913.15
|
||||||
|
22.505 923.15
|
||||||
|
22.844 933.15
|
||||||
|
23.18 943.15
|
||||||
|
23.514 953.15
|
||||||
|
23.846 963.15
|
||||||
|
24.175 973.15
|
||||||
|
24.502 983.15
|
||||||
|
24.827 993.15
|
||||||
|
25.149 1003.15
|
||||||
|
25.468 1013.15
|
||||||
|
25.785 1023.15
|
||||||
|
26.1 1033.15
|
||||||
|
26.413 1043.15
|
||||||
|
26.723 1053.15
|
||||||
|
27.03 1063.15
|
||||||
|
27.335 1073.15
|
||||||
|
27.638 1083.15
|
||||||
|
27.938 1093.15
|
||||||
|
28.236 1103.15
|
||||||
|
28.531 1113.15
|
||||||
|
28.824 1123.15
|
||||||
|
29.115 1133.15
|
||||||
|
29.403 1143.15
|
||||||
|
29.688 1153.15
|
||||||
|
29.971 1163.15
|
||||||
|
30.252 1173.15
|
||||||
|
30.53 1183.15
|
||||||
|
30.806 1193.15
|
||||||
|
31.079 1203.15
|
||||||
|
31.349 1213.15
|
||||||
|
31.617 1223.15
|
||||||
|
31.882 1233.15
|
||||||
|
32.145 1243.15
|
||||||
|
32.404 1253.15
|
||||||
|
32.661 1263.15
|
||||||
|
32.915 1273.15
|
||||||
|
33.167 1283.15
|
||||||
|
33.415 1293.15
|
||||||
|
33.66 1303.15
|
||||||
|
|
||||||
|
|
5
tecs/inp/variox.cfg
Normal file
5
tecs/inp/variox.cfg
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
sensA.type=m sensA.curve=x12533
|
||||||
|
dev="variox cryostat"
|
||||||
|
tlimit=375 resist=25 maxpower=25
|
||||||
|
prop=20 int=10 deriv=0
|
||||||
|
loop=2
|
92
tecs/inp/x09882.inp
Normal file
92
tecs/inp/x09882.inp
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
sens=x09882
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=325 ! setpoint limit (automatic if omitted)
|
||||||
|
type=cernox ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=300uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
14797.9 1.19193
|
||||||
|
12448.4 1.29974
|
||||||
|
10982.6 1.38715
|
||||||
|
8547.47 1.59428
|
||||||
|
7041.63 1.79221
|
||||||
|
5911 2.00599
|
||||||
|
5115.55 2.21219
|
||||||
|
4531.17 2.41069
|
||||||
|
4078.98 2.6051
|
||||||
|
3727.92 2.79063
|
||||||
|
3402.6 2.99993
|
||||||
|
3128.16 3.21371
|
||||||
|
2913.34 3.41252
|
||||||
|
2734.11 3.60403
|
||||||
|
2569.37 3.80774
|
||||||
|
2431.76 4.0002
|
||||||
|
2312.38 4.1892
|
||||||
|
2096.39 4.59514
|
||||||
|
1922.56 4.99537
|
||||||
|
1744.81 5.50526
|
||||||
|
1549.77 6.22335
|
||||||
|
1383.86 7.02472
|
||||||
|
1222.31 8.06177
|
||||||
|
1100.15 9.09066
|
||||||
|
1002.21 10.1355
|
||||||
|
924.021 11.1589
|
||||||
|
859.364 12.1735
|
||||||
|
804.651 13.185
|
||||||
|
758.845 14.162
|
||||||
|
718.001 15.1556
|
||||||
|
681.881 16.1464
|
||||||
|
650.369 17.1142
|
||||||
|
621.743 18.0865
|
||||||
|
596.067 19.0522
|
||||||
|
572.129 20.0353
|
||||||
|
548.69 21.0945
|
||||||
|
516.935 22.695
|
||||||
|
490.347 24.2048
|
||||||
|
465.176 25.8072
|
||||||
|
442.439 27.4145
|
||||||
|
422.126 29.018
|
||||||
|
401.43 30.8186
|
||||||
|
379.561 32.9565
|
||||||
|
352.698 35.9509
|
||||||
|
329.394 38.968
|
||||||
|
309.122 41.9784
|
||||||
|
291.451 44.9523
|
||||||
|
275.567 47.9705
|
||||||
|
266.007 49.9734
|
||||||
|
244.814 54.9644
|
||||||
|
226.895 59.9372
|
||||||
|
211.835 64.8041
|
||||||
|
198.257 69.8265
|
||||||
|
186.421 74.8073
|
||||||
|
175.994 79.76
|
||||||
|
166.615 84.7645
|
||||||
|
158.17 89.757
|
||||||
|
150.595 94.7278
|
||||||
|
143.445 99.88
|
||||||
|
131.348 109.891
|
||||||
|
121.126 119.886
|
||||||
|
112.336 129.879
|
||||||
|
104.767 139.858
|
||||||
|
98.1002 149.874
|
||||||
|
92.2394 159.86
|
||||||
|
87.0447 169.871
|
||||||
|
82.4096 179.84
|
||||||
|
78.2514 189.848
|
||||||
|
74.5122 199.87
|
||||||
|
71.1115 209.86
|
||||||
|
68.0321 219.844
|
||||||
|
65.2143 229.889
|
||||||
|
62.6401 239.915
|
||||||
|
60.2922 249.884
|
||||||
|
58.1205 259.897
|
||||||
|
56.124 269.929
|
||||||
|
54.28 279.941
|
||||||
|
52.5664 289.964
|
||||||
|
50.9743 300.009
|
||||||
|
49.4965 310.068
|
||||||
|
48.7925 315.086
|
||||||
|
48.1168 320.089
|
||||||
|
47.3448 326.091
|
||||||
|
46.8369 330.089
|
||||||
|
|
92
tecs/inp/x09883.inp
Normal file
92
tecs/inp/x09883.inp
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
sens=x09883
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=325 ! setpoint limit (automatic if omitted)
|
||||||
|
type=cernox ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=300uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
50697.2 1.19172
|
||||||
|
40559.1 1.2997
|
||||||
|
34512.9 1.38772
|
||||||
|
25063.8 1.59429
|
||||||
|
19577.5 1.79224
|
||||||
|
15681.2 2.00579
|
||||||
|
13072.2 2.21208
|
||||||
|
11222.3 2.41069
|
||||||
|
9847.35 2.6034
|
||||||
|
8791.26 2.7906
|
||||||
|
7846.7 3.00005
|
||||||
|
7069.93 3.21374
|
||||||
|
6474.44 3.41239
|
||||||
|
5988.04 3.60402
|
||||||
|
5544.72 3.80786
|
||||||
|
5182.73 4.00017
|
||||||
|
4871.97 4.1891
|
||||||
|
4322.43 4.59508
|
||||||
|
3890.99 4.99554
|
||||||
|
3458.11 5.50564
|
||||||
|
2996.38 6.22351
|
||||||
|
2615.51 7.0249
|
||||||
|
2254.83 8.06193
|
||||||
|
1988.83 9.09068
|
||||||
|
1780.29 10.1358
|
||||||
|
1617.51 11.1589
|
||||||
|
1484.58 12.1733
|
||||||
|
1373.99 13.1848
|
||||||
|
1282.45 14.1616
|
||||||
|
1202 15.1558
|
||||||
|
1131.5 16.1467
|
||||||
|
1070.43 17.1145
|
||||||
|
1015.81 18.0864
|
||||||
|
967.127 19.0523
|
||||||
|
922.097 20.0348
|
||||||
|
878.301 21.0942
|
||||||
|
819.492 22.695
|
||||||
|
771.027 24.2035
|
||||||
|
725.442 25.8078
|
||||||
|
684.833 27.4152
|
||||||
|
648.656 29.0175
|
||||||
|
612.282 30.8184
|
||||||
|
574.104 32.9566
|
||||||
|
527.93 35.951
|
||||||
|
488.247 38.9681
|
||||||
|
454.161 41.9788
|
||||||
|
424.745 44.9516
|
||||||
|
398.466 47.9702
|
||||||
|
382.78 49.9734
|
||||||
|
348.448 54.9642
|
||||||
|
319.762 59.9372
|
||||||
|
295.798 64.8036
|
||||||
|
274.497 69.8262
|
||||||
|
256.115 74.8066
|
||||||
|
240.064 79.7602
|
||||||
|
225.652 84.764
|
||||||
|
212.863 89.7568
|
||||||
|
201.482 94.7284
|
||||||
|
190.788 99.8804
|
||||||
|
172.849 109.891
|
||||||
|
157.882 119.887
|
||||||
|
145.172 129.88
|
||||||
|
134.301 139.858
|
||||||
|
124.826 149.873
|
||||||
|
116.577 159.861
|
||||||
|
109.293 169.871
|
||||||
|
102.863 179.841
|
||||||
|
97.1221 189.85
|
||||||
|
91.9646 199.871
|
||||||
|
87.3432 209.859
|
||||||
|
83.1778 219.842
|
||||||
|
79.3655 229.891
|
||||||
|
75.9226 239.917
|
||||||
|
72.7733 249.883
|
||||||
|
69.8839 259.896
|
||||||
|
67.2351 269.927
|
||||||
|
64.7933 279.942
|
||||||
|
62.5416 289.965
|
||||||
|
60.4496 300.008
|
||||||
|
58.5077 310.066
|
||||||
|
57.5961 315.084
|
||||||
|
56.712 320.09
|
||||||
|
55.6983 326.087
|
||||||
|
55.0466 330.089
|
||||||
|
|
79
tecs/inp/x09941.inp
Normal file
79
tecs/inp/x09941.inp
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
sens=x09941
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=3250 ! setpoint limit (automatic if omitted)
|
||||||
|
type=Cernox ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=300uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
89109.92656 3.592342734
|
||||||
|
75927.84882 3.80771172
|
||||||
|
66873.53337 3.992385149
|
||||||
|
58461.84522 4.203659534
|
||||||
|
44177.58035 4.711746931
|
||||||
|
36572.40042 5.100198746
|
||||||
|
29499.39651 5.611691713
|
||||||
|
22954.09467 6.309052944
|
||||||
|
17974.18138 7.115644217
|
||||||
|
13888.58545 8.139806747
|
||||||
|
11049.51828 9.232270241
|
||||||
|
9014.528883 10.37906504
|
||||||
|
7650.452644 11.44719648
|
||||||
|
6625.778004 12.50353575
|
||||||
|
5832.554093 13.54768562
|
||||||
|
5202.695698 14.5772028
|
||||||
|
4707.313975 15.55929899
|
||||||
|
4291.544831 16.54255772
|
||||||
|
3945.424009 17.49967384
|
||||||
|
3650.35765 18.44649696
|
||||||
|
3395.003004 19.38338852
|
||||||
|
3166.788192 20.33590603
|
||||||
|
2961.395028 21.30691433
|
||||||
|
2692.155406 22.77910137
|
||||||
|
2440.49331 24.41886806
|
||||||
|
2236.687306 25.98587322
|
||||||
|
2061.626067 27.54995251
|
||||||
|
1907.050891 29.14138508
|
||||||
|
1758.477449 30.91228008
|
||||||
|
1606.203424 33.02730751
|
||||||
|
1428.689702 35.99930763
|
||||||
|
1283.046021 38.97810364
|
||||||
|
1161.33904 41.98565865
|
||||||
|
1059.899025 44.95008087
|
||||||
|
972.8716648 47.94148254
|
||||||
|
921.8402765 49.92553711
|
||||||
|
813.9183038 54.87852478
|
||||||
|
727.6791559 59.77289772
|
||||||
|
657.3901952 64.61587906
|
||||||
|
597.3237814 69.57008362
|
||||||
|
545.9993931 74.58304977
|
||||||
|
502.235637 79.57922745
|
||||||
|
464.7514845 84.53449631
|
||||||
|
431.8887078 89.51391983
|
||||||
|
403.4046886 94.43180466
|
||||||
|
376.4541741 99.69680786
|
||||||
|
333.2715871 109.7288055
|
||||||
|
298.4388825 119.7237396
|
||||||
|
269.6344771 129.7141037
|
||||||
|
245.6040149 139.6854935
|
||||||
|
225.5918325 149.4456711
|
||||||
|
207.8105273 159.5582657
|
||||||
|
192.8477201 169.3871689
|
||||||
|
179.54412 179.4086685
|
||||||
|
168.028657 189.2752991
|
||||||
|
157.8098318 199.1471634
|
||||||
|
148.5936477 209.1398315
|
||||||
|
140.4454005 219.0371552
|
||||||
|
133.0699767 228.9918213
|
||||||
|
126.4626969 238.8810654
|
||||||
|
120.4248519 248.837532
|
||||||
|
114.9800847 258.7176971
|
||||||
|
109.9841984 268.6493378
|
||||||
|
105.4154935 278.5511017
|
||||||
|
101.2011797 288.5041351
|
||||||
|
97.36067783 298.3769836
|
||||||
|
93.82776671 308.21138
|
||||||
|
92.11573271 313.2369537
|
||||||
|
90.48969767 318.2412415
|
||||||
|
88.57005094 324.3699188
|
||||||
|
87.17269938 329.0235748
|
||||||
|
|
93
tecs/inp/x10045.inp
Normal file
93
tecs/inp/x10045.inp
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
sens=x10045
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=325 ! setpoint limit (automatic if omitted)
|
||||||
|
type=cernox ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=300uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
74663.91424 0.833452742
|
||||||
|
60860.05098 0.94945966
|
||||||
|
49551.87681 1.077803432
|
||||||
|
35363.88586 1.32313617
|
||||||
|
27025.56488 1.558155166
|
||||||
|
21164.07675 1.807418904
|
||||||
|
17439.43364 2.03304067
|
||||||
|
14660.90306 2.26104489
|
||||||
|
12674.48887 2.474474502
|
||||||
|
11040.01571 2.699494433
|
||||||
|
9785.229203 2.916614022
|
||||||
|
8788.251677 3.12854605
|
||||||
|
7989.704459 3.332865003
|
||||||
|
7286.655618 3.552242447
|
||||||
|
6732.86304 3.758944594
|
||||||
|
6251.098886 3.968357998
|
||||||
|
5847.432327 4.16875188
|
||||||
|
5191.478606 4.561898582
|
||||||
|
4648.86278 4.968968542
|
||||||
|
4096.7535 5.492187484
|
||||||
|
3531.813507 6.205857585
|
||||||
|
3061.567702 7.009732318
|
||||||
|
2632.586667 8.013117487
|
||||||
|
2308.809844 9.034165571
|
||||||
|
2050.115691 10.10054065
|
||||||
|
1856.065086 11.11342812
|
||||||
|
1697.939632 12.11838913
|
||||||
|
1566.241253 13.12607813
|
||||||
|
1456.905801 14.10203743
|
||||||
|
1361.213594 15.09700775
|
||||||
|
1277.653195 16.0933466
|
||||||
|
1205.321893 17.06789303
|
||||||
|
1140.225621 18.05500221
|
||||||
|
1082.497021 19.03311348
|
||||||
|
1029.299845 20.03519344
|
||||||
|
978.7301404 21.09197235
|
||||||
|
909.7052218 22.72586918
|
||||||
|
853.6474417 24.24230862
|
||||||
|
800.4013622 25.88646126
|
||||||
|
754.2905397 27.49036598
|
||||||
|
712.4078269 29.14169598
|
||||||
|
670.7126389 30.97229099
|
||||||
|
627.7691435 33.09676743
|
||||||
|
575.1713405 36.13175392
|
||||||
|
530.9271979 39.13507843
|
||||||
|
493.6372768 42.07116508
|
||||||
|
460.4204351 45.08211136
|
||||||
|
431.344044 48.07953453
|
||||||
|
413.5443388 50.11058044
|
||||||
|
375.6941402 55.06404877
|
||||||
|
343.7844255 60.05997467
|
||||||
|
316.5557099 65.08597946
|
||||||
|
293.3070433 70.08469391
|
||||||
|
273.2720797 75.05005646
|
||||||
|
255.8364317 79.95571518
|
||||||
|
240.2177908 84.94446182
|
||||||
|
226.3417365 89.90671921
|
||||||
|
213.7399247 94.94441986
|
||||||
|
202.290575 100.0309563
|
||||||
|
182.836437 110.0102921
|
||||||
|
166.6070332 120.016922
|
||||||
|
152.8936908 130.0197296
|
||||||
|
141.1122505 140.0428009
|
||||||
|
130.9833926 150.0209808
|
||||||
|
122.1217608 160.0074768
|
||||||
|
114.3245474 170.0121689
|
||||||
|
107.4602859 179.9772949
|
||||||
|
101.3318808 189.9621048
|
||||||
|
95.84227734 199.9853439
|
||||||
|
90.91929929 209.9731979
|
||||||
|
87.21012645 218.2335968
|
||||||
|
82.43730345 229.9926758
|
||||||
|
78.78173797 239.9560928
|
||||||
|
75.43740052 249.9537582
|
||||||
|
72.39056663 259.9496765
|
||||||
|
69.58110202 269.9509277
|
||||||
|
66.99775356 279.9595947
|
||||||
|
64.61902665 289.9429169
|
||||||
|
62.42460824 299.9438019
|
||||||
|
60.37761496 309.9502869
|
||||||
|
59.41308694 314.9428101
|
||||||
|
58.49246424 319.9327393
|
||||||
|
57.41458757 325.8934326
|
||||||
|
56.75585142 329.7308502
|
||||||
|
|
||||||
|
|
81
tecs/inp/x10409.inp
Normal file
81
tecs/inp/x10409.inp
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
sens=x10409
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=3250 ! setpoint limit (automatic if omitted)
|
||||||
|
type=Cernox ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=300uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
32269 2.9
|
||||||
|
20748.23736 3.603200555
|
||||||
|
18579.47154 3.804014087
|
||||||
|
16787.76559 4.006860971
|
||||||
|
15312.0953 4.206260443
|
||||||
|
12878.53597 4.621938705
|
||||||
|
11165.60106 5.008944988
|
||||||
|
9488.065966 5.520080328
|
||||||
|
7822.402491 6.221029282
|
||||||
|
6511.52182 7.015725851
|
||||||
|
5367.730437 8.012619019
|
||||||
|
4547.8505 9.028389454
|
||||||
|
3941.31213 10.05083227
|
||||||
|
3483.009321 11.05512524
|
||||||
|
3121.047033 12.05727196
|
||||||
|
2824.662495 13.06689167
|
||||||
|
2585.652442 14.04817963
|
||||||
|
2378.793212 15.05108452
|
||||||
|
2202.553608 16.05706978
|
||||||
|
2051.669948 17.04423904
|
||||||
|
1920.122874 18.04127312
|
||||||
|
1804.411269 19.02977657
|
||||||
|
1699.495361 20.03870296
|
||||||
|
1600.184447 21.11633015
|
||||||
|
1470.090201 22.73399639
|
||||||
|
1365.536983 24.24896431
|
||||||
|
1267.256013 25.89503288
|
||||||
|
1183.944345 27.48793411
|
||||||
|
1109.317628 29.10398102
|
||||||
|
1035.857301 30.92041111
|
||||||
|
961.0568252 33.03728104
|
||||||
|
870.4233581 36.06695747
|
||||||
|
795.1136505 39.0746727
|
||||||
|
732.5889862 42.01421165
|
||||||
|
677.4377467 45.02629662
|
||||||
|
630.0009583 48.02737236
|
||||||
|
601.1675257 50.06132126
|
||||||
|
540.4813148 55.02171707
|
||||||
|
490.1353054 60.01608086
|
||||||
|
447.7458778 65.0472908
|
||||||
|
412.614513 69.94781113
|
||||||
|
382.1132871 74.89925385
|
||||||
|
355.1316233 79.93727493
|
||||||
|
331.7406269 84.91990662
|
||||||
|
311.1618975 89.87853622
|
||||||
|
292.6475904 94.90999222
|
||||||
|
275.8925548 99.9990654
|
||||||
|
247.7818855 109.9829636
|
||||||
|
224.5444307 119.9845352
|
||||||
|
205.0093904 129.9849472
|
||||||
|
188.4524514 140.0073547
|
||||||
|
174.2845269 149.9874802
|
||||||
|
161.9983605 159.9749832
|
||||||
|
151.2042924 169.985466
|
||||||
|
141.7478565 179.9493103
|
||||||
|
133.3809171 189.9470749
|
||||||
|
125.8860681 199.9535294
|
||||||
|
119.1794129 209.9433517
|
||||||
|
113.1612303 219.9225845
|
||||||
|
107.6761902 229.9573059
|
||||||
|
102.753304 239.9341965
|
||||||
|
98.25500897 249.9317551
|
||||||
|
94.14265231 259.9379425
|
||||||
|
90.37198068 269.9463196
|
||||||
|
86.90447594 279.9547577
|
||||||
|
83.71326247 289.9455261
|
||||||
|
80.77006452 299.9459534
|
||||||
|
78.04586532 309.9586639
|
||||||
|
76.75843584 314.9595947
|
||||||
|
75.5204243 319.9495544
|
||||||
|
74.1057045 325.9043579
|
||||||
|
73.21666644 329.7353821
|
||||||
|
|
||||||
|
|
92
tecs/inp/x12532.inp
Normal file
92
tecs/inp/x12532.inp
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
sens=x12532
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=325 ! setpoint limit (automatic if omitted)
|
||||||
|
type=Cernox ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=30uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
70362.79975 1.212527454
|
||||||
|
57354.12647 1.302272379
|
||||||
|
46697.37477 1.403238893
|
||||||
|
33326.70199 1.600960016
|
||||||
|
25468.72112 1.795867503
|
||||||
|
19944.89184 2.00802362
|
||||||
|
16434.81178 2.204471231
|
||||||
|
13816.34216 2.406850576
|
||||||
|
11944.35802 2.599458814
|
||||||
|
10404.04086 2.805486679
|
||||||
|
9221.538007 3.00683713
|
||||||
|
8281.992703 3.205510736
|
||||||
|
7529.446863 3.398802876
|
||||||
|
6866.898089 3.60289824
|
||||||
|
6358.310835 3.787422657
|
||||||
|
5869.022151 3.994391799
|
||||||
|
5435.666264 4.207564354
|
||||||
|
5048.762029 4.432380199
|
||||||
|
4538.253606 4.784216642
|
||||||
|
3914.242563 5.342155457
|
||||||
|
3300.345086 6.1004107
|
||||||
|
2852.151097 6.871144295
|
||||||
|
2432.277393 7.865599394
|
||||||
|
2104.024357 8.939789295
|
||||||
|
1891.65792 9.848791122
|
||||||
|
1709.086747 10.8249917
|
||||||
|
1546.544011 11.9003787
|
||||||
|
1433.74055 12.79861736
|
||||||
|
1330.790008 13.76333618
|
||||||
|
1236.964242 14.78599024
|
||||||
|
1158.932854 15.77061892
|
||||||
|
1094.433622 16.69752789
|
||||||
|
1034.852929 17.65495396
|
||||||
|
980.4768503 18.63900185
|
||||||
|
931.1575654 19.63551426
|
||||||
|
877.4284261 20.84920597
|
||||||
|
815.0188765 22.46425533
|
||||||
|
763.3323477 24.00939465
|
||||||
|
714.2919854 25.68263149
|
||||||
|
672.6664451 27.29566765
|
||||||
|
635.4227663 28.91499805
|
||||||
|
594.7482643 30.9173727
|
||||||
|
558.0807072 32.97071648
|
||||||
|
509.2143732 36.1684494
|
||||||
|
471.6113012 39.07764816
|
||||||
|
437.804997 42.11110878
|
||||||
|
408.8444735 45.10894012
|
||||||
|
382.8528407 48.18277168
|
||||||
|
367.2296644 50.23297501
|
||||||
|
334.2280013 55.20708084
|
||||||
|
306.6669189 60.1606102
|
||||||
|
282.6831175 65.24242783
|
||||||
|
263.0523013 70.10311127
|
||||||
|
245.7696072 75.00517273
|
||||||
|
230.2783714 80.00709915
|
||||||
|
216.3068241 85.11901474
|
||||||
|
204.236498 90.08152008
|
||||||
|
193.5017279 95.00956726
|
||||||
|
183.0021768 100.3596878
|
||||||
|
166.1378977 110.3379211
|
||||||
|
151.9435045 120.3833733
|
||||||
|
139.8754191 130.4784241
|
||||||
|
129.680753 140.4299698
|
||||||
|
120.6604451 150.5546036
|
||||||
|
112.8963027 160.5837402
|
||||||
|
106.0233471 170.6487656
|
||||||
|
99.8972362 180.78125
|
||||||
|
94.50981669 190.7928619
|
||||||
|
89.64252042 200.860321
|
||||||
|
85.26064276 210.9817581
|
||||||
|
81.31788864 221.0397568
|
||||||
|
77.77070909 231.033371
|
||||||
|
74.47131628 241.2135544
|
||||||
|
71.49486847 251.315155
|
||||||
|
68.76514076 261.3838501
|
||||||
|
66.26072797 271.4606934
|
||||||
|
63.96949118 281.4693451
|
||||||
|
61.81970992 291.6225433
|
||||||
|
59.83227113 301.7844849
|
||||||
|
57.99467905 311.8901367
|
||||||
|
57.13732908 316.9467773
|
||||||
|
56.30362245 321.9956055
|
||||||
|
55.50368464 326.9982605
|
||||||
|
|
||||||
|
|
90
tecs/inp/x12533.inp
Normal file
90
tecs/inp/x12533.inp
Normal file
@ -0,0 +1,90 @@
|
|||||||
|
sens=x12533
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=325 ! setpoint limit (automatic if omitted)
|
||||||
|
type=cernox ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=300uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
58491.11567 1.212535322
|
||||||
|
47949.5449 1.302323103
|
||||||
|
39259.49409 1.40324533
|
||||||
|
28281.43621 1.600896776
|
||||||
|
21767.98069 1.795822322
|
||||||
|
17155.67121 2.008253574
|
||||||
|
14213.75553 2.204490304
|
||||||
|
12007.63886 2.406743169
|
||||||
|
10415.31809 2.599679828
|
||||||
|
9105.003941 2.805752277
|
||||||
|
8097.388389 3.006976485
|
||||||
|
7291.357363 3.205610991
|
||||||
|
6646.490487 3.398921728
|
||||||
|
6076.028335 3.602926254
|
||||||
|
5637.018504 3.787533283
|
||||||
|
5214.064508 3.994657993
|
||||||
|
4839.768732 4.207356453
|
||||||
|
4501.690135 4.432101488
|
||||||
|
4057.668994 4.784009218
|
||||||
|
3511.923839 5.342074394
|
||||||
|
2973.614912 6.100896835
|
||||||
|
2579.128549 6.871365786
|
||||||
|
2207.384439 7.865557909
|
||||||
|
1915.850175 8.940035343
|
||||||
|
1726.748344 9.848879814
|
||||||
|
1563.465412 10.82483435
|
||||||
|
1418.13084 11.9001646
|
||||||
|
1316.964373 12.79871416
|
||||||
|
1224.187029 13.76333618
|
||||||
|
1139.695628 14.78597641
|
||||||
|
1069.281285 15.77101898
|
||||||
|
1010.884223 16.69764805
|
||||||
|
957.2041233 17.6546526
|
||||||
|
907.944238 18.63812733
|
||||||
|
863.1087092 19.63531017
|
||||||
|
814.3069506 20.84896278
|
||||||
|
757.6393844 22.4640255
|
||||||
|
710.4887602 24.00959301
|
||||||
|
665.7070891 25.68195915
|
||||||
|
627.583247 27.29504395
|
||||||
|
593.4598081 28.91486263
|
||||||
|
556.2805114 30.91711807
|
||||||
|
522.5368408 32.97060394
|
||||||
|
477.5900412 36.16845131
|
||||||
|
442.8664029 39.07749367
|
||||||
|
411.6814887 42.11124992
|
||||||
|
384.9241731 45.10907555
|
||||||
|
360.8523969 48.1827774
|
||||||
|
346.3993674 50.23285484
|
||||||
|
315.6773941 55.20724106
|
||||||
|
290.0937236 60.16088295
|
||||||
|
267.7935066 65.242836
|
||||||
|
249.4506493 70.1031723
|
||||||
|
233.2979124 75.00526047
|
||||||
|
218.8083315 80.00709915
|
||||||
|
205.717029 85.11898804
|
||||||
|
194.3976616 90.08143997
|
||||||
|
184.3289633 95.00944519
|
||||||
|
174.4566698 100.3590927
|
||||||
|
158.5832207 110.3372612
|
||||||
|
145.2116141 120.3833885
|
||||||
|
133.8192793 130.4760437
|
||||||
|
124.1684502 140.4295197
|
||||||
|
115.6706335 150.5550842
|
||||||
|
108.2798297 160.5835495
|
||||||
|
101.75565 170.6484222
|
||||||
|
95.95185322 180.7810669
|
||||||
|
90.8262136 190.7918854
|
||||||
|
86.2172275 200.8603973
|
||||||
|
82.03414533 210.9830551
|
||||||
|
78.2895644 221.0397034
|
||||||
|
74.89527823 231.0341873
|
||||||
|
71.75384718 241.2140121
|
||||||
|
68.9091264 251.3133316
|
||||||
|
66.30965093 261.3838348
|
||||||
|
63.91098586 271.4609528
|
||||||
|
61.72845994 281.4719086
|
||||||
|
59.67628607 291.6222687
|
||||||
|
57.78058314 301.7855835
|
||||||
|
56.02719573 311.8906708
|
||||||
|
55.19537744 316.946228
|
||||||
|
54.39166232 321.9963684
|
||||||
|
53.62604513 326.9980164
|
155
tecs/inp/x12905.inp
Normal file
155
tecs/inp/x12905.inp
Normal file
@ -0,0 +1,155 @@
|
|||||||
|
sens=x12905
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
type=Cernox ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
12126.7 1.4
|
||||||
|
10474.9 1.5
|
||||||
|
9167.68 1.6
|
||||||
|
8118.49 1.7
|
||||||
|
7266.4 1.8
|
||||||
|
6566.56 1.9
|
||||||
|
5984.89 2
|
||||||
|
5495.55 2.1
|
||||||
|
5079.27 2.2
|
||||||
|
4721.32 2.3
|
||||||
|
4410.66 2.4
|
||||||
|
4138.66 2.5
|
||||||
|
3898.73 2.6
|
||||||
|
3685.6 2.7
|
||||||
|
3495.13 2.8
|
||||||
|
3323.95 2.9
|
||||||
|
3169.36 3
|
||||||
|
3029.1 3.1
|
||||||
|
2901.33 3.2
|
||||||
|
2784.5 3.3
|
||||||
|
2677.29 3.4
|
||||||
|
2578.6 3.5
|
||||||
|
2487.48 3.6
|
||||||
|
2403.11 3.7
|
||||||
|
2324.8 3.8
|
||||||
|
2251.92 3.9
|
||||||
|
2183.95 4
|
||||||
|
2060.92 4.2
|
||||||
|
1952.57 4.4
|
||||||
|
1856.5 4.6
|
||||||
|
1770.74 4.8
|
||||||
|
1693.73 5
|
||||||
|
1624.2 5.2
|
||||||
|
1561.13 5.4
|
||||||
|
1503.63 5.6
|
||||||
|
1451.01 5.8
|
||||||
|
1402.66 6
|
||||||
|
1297.34 6.5
|
||||||
|
1209.65 7
|
||||||
|
1135.4 7.5
|
||||||
|
1071.67 8
|
||||||
|
1016.26 8.5
|
||||||
|
967.592 9
|
||||||
|
924.447 9.5
|
||||||
|
885.899 10
|
||||||
|
851.205 10.5
|
||||||
|
819.79 11
|
||||||
|
791.181 11.5
|
||||||
|
764.995 12
|
||||||
|
740.91 12.5
|
||||||
|
718.686 13
|
||||||
|
698.12 13.5
|
||||||
|
678.996 14
|
||||||
|
661.11 14.5
|
||||||
|
644.343 15
|
||||||
|
628.606 15.5
|
||||||
|
613.803 16
|
||||||
|
599.837 16.5
|
||||||
|
586.63 17
|
||||||
|
574.117 17.5
|
||||||
|
562.238 18
|
||||||
|
550.939 18.5
|
||||||
|
540.174 19
|
||||||
|
529.9 19.5
|
||||||
|
520.081 20
|
||||||
|
501.678 21
|
||||||
|
484.734 22
|
||||||
|
469.064 23
|
||||||
|
454.514 24
|
||||||
|
440.955 25
|
||||||
|
428.28 26
|
||||||
|
416.397 27
|
||||||
|
405.227 28
|
||||||
|
394.702 29
|
||||||
|
384.763 30
|
||||||
|
375.36 31
|
||||||
|
366.447 32
|
||||||
|
357.984 33
|
||||||
|
349.935 34
|
||||||
|
342.27 35
|
||||||
|
334.959 36
|
||||||
|
327.978 37
|
||||||
|
321.303 38
|
||||||
|
314.915 39
|
||||||
|
308.793 40
|
||||||
|
297.283 42
|
||||||
|
286.654 44
|
||||||
|
276.805 46
|
||||||
|
267.65 48
|
||||||
|
259.116 50
|
||||||
|
251.14 52
|
||||||
|
243.668 54
|
||||||
|
236.652 56
|
||||||
|
230.05 58
|
||||||
|
223.825 60
|
||||||
|
209.71 65
|
||||||
|
197.346 70
|
||||||
|
186.416 75
|
||||||
|
181.699 77.35
|
||||||
|
176.668 80
|
||||||
|
167.922 85
|
||||||
|
160.02 90
|
||||||
|
152.839 95
|
||||||
|
146.283 100
|
||||||
|
140.272 105
|
||||||
|
134.739 110
|
||||||
|
129.628 115
|
||||||
|
124.893 120
|
||||||
|
120.493 125
|
||||||
|
116.393 130
|
||||||
|
112.564 135
|
||||||
|
108.98 140
|
||||||
|
105.619 145
|
||||||
|
102.459 150
|
||||||
|
99.4844 155
|
||||||
|
96.6792 160
|
||||||
|
94.0294 165
|
||||||
|
91.523 170
|
||||||
|
89.1489 175
|
||||||
|
86.8973 180
|
||||||
|
84.7593 185
|
||||||
|
82.7268 190
|
||||||
|
80.7927 195
|
||||||
|
78.9503 200
|
||||||
|
77.1935 205
|
||||||
|
75.5169 210
|
||||||
|
73.9154 215
|
||||||
|
72.3845 220
|
||||||
|
70.9197 225
|
||||||
|
69.5173 230
|
||||||
|
68.1735 235
|
||||||
|
66.8851 240
|
||||||
|
65.6488 245
|
||||||
|
64.4619 250
|
||||||
|
63.3217 255
|
||||||
|
62.2255 260
|
||||||
|
61.1711 265
|
||||||
|
60.1563 270
|
||||||
|
59.5364 273.15
|
||||||
|
59.1791 275
|
||||||
|
58.2376 280
|
||||||
|
57.3299 285
|
||||||
|
56.4544 290
|
||||||
|
55.6095 295
|
||||||
|
54.7938 300
|
||||||
|
54.0058 305
|
||||||
|
53.2442 310
|
||||||
|
52.5078 315
|
||||||
|
51.7955 320
|
||||||
|
51.106 325
|
||||||
|
|
92
tecs/inp/x13089.inp
Normal file
92
tecs/inp/x13089.inp
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
sens=x13089
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=325 ! setpoint limit (automatic if omitted)
|
||||||
|
type=cernox ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=300uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
23282.77032 1.201411964
|
||||||
|
18940.37089 1.302915409
|
||||||
|
15980.25114 1.398594966
|
||||||
|
11836.80508 1.596837978
|
||||||
|
9256.530986 1.797479418
|
||||||
|
7590.003117 1.99155689
|
||||||
|
6348.429816 2.197731075
|
||||||
|
5461.271104 2.398754188
|
||||||
|
4814.160875 2.590508994
|
||||||
|
4261.59355 2.800302629
|
||||||
|
3841.97375 3.00037014
|
||||||
|
3502.177602 3.198451903
|
||||||
|
3204.414778 3.408019548
|
||||||
|
2985.156946 3.5919942
|
||||||
|
2772.80929 3.798749503
|
||||||
|
2606.618466 3.988047225
|
||||||
|
2439.745949 4.205178466
|
||||||
|
2175.91509 4.622859343
|
||||||
|
1978.218735 5.025752554
|
||||||
|
1778.846939 5.532288885
|
||||||
|
1567.62827 6.240796506
|
||||||
|
1388.105765 7.052960837
|
||||||
|
1222.295551 8.06591284
|
||||||
|
1097.750703 9.084500202
|
||||||
|
1000.575337 10.10162877
|
||||||
|
923.0118454 11.11366005
|
||||||
|
858.7399834 12.12674717
|
||||||
|
805.1048002 13.13159579
|
||||||
|
759.4896453 14.13032082
|
||||||
|
719.7374792 15.12575443
|
||||||
|
684.8875483 16.11531839
|
||||||
|
653.9039283 17.10483438
|
||||||
|
626.1042046 18.0910195
|
||||||
|
601.1725797 19.07285116
|
||||||
|
578.4081318 20.05485689
|
||||||
|
555.4977106 21.13791045
|
||||||
|
525.5258216 22.72069291
|
||||||
|
498.9067392 24.31406216
|
||||||
|
474.5338365 25.9431995
|
||||||
|
452.5122922 27.58075597
|
||||||
|
432.7118898 29.21788543
|
||||||
|
412.7786152 31.03756006
|
||||||
|
391.8866621 33.15210641
|
||||||
|
365.8757877 36.16130008
|
||||||
|
343.3465339 39.16073827
|
||||||
|
323.5020423 42.15611312
|
||||||
|
306.0795805 45.14730855
|
||||||
|
290.4274025 48.1496581
|
||||||
|
280.9539983 50.14686068
|
||||||
|
259.7524678 55.15029909
|
||||||
|
241.6520931 60.14985227
|
||||||
|
225.9751806 65.14270755
|
||||||
|
212.301462 70.14672582
|
||||||
|
200.1956819 75.14768803
|
||||||
|
189.4641248 80.144897
|
||||||
|
179.8519787 85.14407764
|
||||||
|
171.177525 90.14201951
|
||||||
|
163.2852432 95.13715956
|
||||||
|
156.1098042 100.1338452
|
||||||
|
143.4554918 110.1307274
|
||||||
|
132.731907 120.1431776
|
||||||
|
123.4890012 130.1513103
|
||||||
|
115.4046281 140.1584345
|
||||||
|
108.3717376 150.1663621
|
||||||
|
102.0966968 160.1706214
|
||||||
|
96.54502474 170.1749181
|
||||||
|
91.55527681 180.1771922
|
||||||
|
87.07974778 190.1795571
|
||||||
|
83.02579701 200.1891904
|
||||||
|
79.34465699 210.2007401
|
||||||
|
75.99834184 220.2047128
|
||||||
|
72.93989789 230.1996634
|
||||||
|
70.14202598 240.1476549
|
||||||
|
67.58874631 250.0540863
|
||||||
|
65.21781761 260.009652
|
||||||
|
63.01636375 270.0084065
|
||||||
|
60.97362115 279.9977651
|
||||||
|
59.07873602 290.0239166
|
||||||
|
57.31555389 300.0431617
|
||||||
|
55.67170328 310.0632294
|
||||||
|
54.89017786 315.0699284
|
||||||
|
54.12998781 320.0632601
|
||||||
|
53.27391016 326.0861151
|
||||||
|
52.68451986 330.2348667
|
||||||
|
|
93
tecs/inp/x13090.inp
Normal file
93
tecs/inp/x13090.inp
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
sens=x13090
|
||||||
|
unit=Ohm ! sensor format (mV,V,Ohm), log formats are choosen automatically
|
||||||
|
!tlim=325 ! setpoint limit (automatic if omitted)
|
||||||
|
type=cernox ! sensor type (Special,Si,GaAlAs,Pt250,Pt500,Pt2500,RhFe,C,Cernox,RuOx,Ge) (special if omitted)
|
||||||
|
!excit=300uA ! (off,30nA,100nA,300nA,1uA,3uA,10uA,30uA,100uA,300uA,1mA,10mV,1mV) (if omitted: default from sensor type)
|
||||||
|
!range=0 ! range in sensor units (if rang=0: determine range from table, if omitted: default from sensor type)
|
||||||
|
curv ! curve (sensor,temp/K) follows, must be ordered, but can be increasing or decreasing
|
||||||
|
17567.87648 1.201366951
|
||||||
|
14456.91319 1.302862619
|
||||||
|
12318.44286 1.398092685
|
||||||
|
9269.380756 1.596958259
|
||||||
|
7344.684998 1.797326926
|
||||||
|
6085.680579 1.99159442
|
||||||
|
5139.052338 2.197274569
|
||||||
|
4451.500522 2.398702837
|
||||||
|
3949.487228 2.590664118
|
||||||
|
3517.826085 2.799921785
|
||||||
|
3186.625233 3.000394356
|
||||||
|
2918.648758 3.198511655
|
||||||
|
2682.019504 3.408070547
|
||||||
|
2506.09826 3.592113857
|
||||||
|
2335.93761 3.79924143
|
||||||
|
2201.478624 3.98818411
|
||||||
|
2066.622624 4.205386724
|
||||||
|
1853.180966 4.622492963
|
||||||
|
1691.598232 5.025609187
|
||||||
|
1528.363648 5.532537741
|
||||||
|
1354.239931 6.241173787
|
||||||
|
1204.801541 7.052924483
|
||||||
|
1066.439601 8.066313222
|
||||||
|
961.6540911 9.084471548
|
||||||
|
879.739935 10.10172926
|
||||||
|
813.9899552 11.11426358
|
||||||
|
759.5276654 12.12693966
|
||||||
|
713.75932 13.13219241
|
||||||
|
674.7297442 14.13019832
|
||||||
|
640.6012119 15.12792955
|
||||||
|
610.800334 16.11502493
|
||||||
|
584.155119 17.10573197
|
||||||
|
560.2563531 18.09046006
|
||||||
|
538.6713548 19.07448296
|
||||||
|
518.935928 20.05723879
|
||||||
|
499.0815475 21.13868801
|
||||||
|
473.0276046 22.72352506
|
||||||
|
449.9217476 24.31285101
|
||||||
|
428.6705654 25.9434019
|
||||||
|
409.4784335 27.58167715
|
||||||
|
392.1591011 29.2183984
|
||||||
|
374.5988053 31.03853152
|
||||||
|
356.3344353 33.15331734
|
||||||
|
333.3134754 36.16111773
|
||||||
|
313.4358598 39.16051532
|
||||||
|
295.8657258 42.15603267
|
||||||
|
280.4155859 45.14697453
|
||||||
|
266.4453231 48.14962387
|
||||||
|
258.0607089 50.14646139
|
||||||
|
239.0870297 55.14961906
|
||||||
|
222.9183156 60.14920991
|
||||||
|
208.8952652 65.1429801
|
||||||
|
196.5938527 70.14636425
|
||||||
|
185.6994357 75.14756889
|
||||||
|
176.0294407 80.14633986
|
||||||
|
167.3142547 85.14293465
|
||||||
|
159.4617491 90.14215397
|
||||||
|
152.3314065 95.13894766
|
||||||
|
145.8157304 100.1335855
|
||||||
|
134.3188267 110.1315292
|
||||||
|
124.5154172 120.1437255
|
||||||
|
116.0660846 130.1527898
|
||||||
|
108.6755652 140.1586574
|
||||||
|
102.2012563 150.1654138
|
||||||
|
96.45301562 160.170481
|
||||||
|
91.31824148 170.1750129
|
||||||
|
86.72731251 180.1773922
|
||||||
|
82.5798662 190.1782318
|
||||||
|
78.82235604 200.1880453
|
||||||
|
75.40375573 210.2018025
|
||||||
|
72.30526311 220.2043004
|
||||||
|
69.47473293 230.2003122
|
||||||
|
66.86851231 240.14454
|
||||||
|
64.48339454 250.0538287
|
||||||
|
62.2722194 260.0092416
|
||||||
|
60.22026932 270.0083784
|
||||||
|
58.31241678 279.9985487
|
||||||
|
56.54399696 290.0247998
|
||||||
|
54.89903782 300.0458261
|
||||||
|
53.35356358 310.065352
|
||||||
|
52.62386051 315.0655902
|
||||||
|
51.92029427 320.0639526
|
||||||
|
51.10076883 326.0873737
|
||||||
|
50.55494992 330.2364089
|
||||||
|
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user