Changeset 649 in Sophya for trunk/Poubelle/archediab.old/archediab.sources/c/mesures_bolo.c
- Timestamp:
- Nov 25, 1999, 2:56:34 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Poubelle/archediab.old/archediab.sources/c/mesures_bolo.c
r643 r649 70 70 // // 71 71 // Ptot = coef3 * ( (10*Tb) ** coef4 - (10*Tcryo) ** coef4 ) // 72 Tcryo=0.1; 73 72 /* Desormais 30/06/1999, Tcryo est calculee avec la germanium */ 73 //Tcryo=0.1; 74 Tcryo= gg->temperature_cryo ; 74 75 Ptot=0; if( (c(4)>0.01) && (T>0.01) ) Ptot = c(3) * ( pow(10.*T,c(4)) - pow(10.*Tcryo,c(4)) ); 75 76 … … 79 80 // tau = - ln ( 1 + Pciel / coef6 ) coef6= I * Bi (tables xavier) // 80 81 81 Pciel = 0; if( c(5)>Pelec) Pciel = c(5) - Pelec; 82 a=1; if( c(6) >0.1 ) a = 1 - Pciel / c(6) ; 83 tau=0; if( a>0 ) tau = - log ( a ); 84 82 //Pciel = 0; if( c(5)>Pelec) Pciel = c(5) - Pelec; 83 Pciel = 0; if( Ptot>Pelec) Pciel = Ptot - Pelec; /* Pour avoir la puissance de rayonnement absorbé */ 84 //a=1; if( c(6) >0.1 ) a = 1 - Pciel / c(6) ; 85 //tau=0; if( a>0 ) tau = - log ( a ); 86 tau=Tcryo ; /* FXD pour avoir Tcryo 16/07/99 */ 85 87 86 88 … … 92 94 93 95 94 ecritT(fenetre_mesures_bolo,fin_f," R=%7.3fM I=%6.3fnA V=%7.3fmV Pelec=% 5.1fpW",R*1e-6,I*1e3,V*1e-3,Pelec);96 ecritT(fenetre_mesures_bolo,fin_f," R=%7.3fM I=%6.3fnA V=%7.3fmV Pelec=%6.2fpW",R*1e-6,I*1e3,V*1e-3,Pelec); 95 97 96 98 if(T>0.01) ecritT(fenetre_mesures_bolo,fin_f," T=%6.1fmK ", T*1e3); 97 99 98 if( Ptot>0. 1) ecritT(fenetre_mesures_bolo,fin_f," Ptot=%5.1fpW Pciel=%5.1fpW tau=%5.3f ",Ptot,Pciel,tau);100 if( Ptot>0.01) ecritT(fenetre_mesures_bolo,fin_f," Ptot=%6.2fpW Pciel=%6.2fpW Tcryo=%6.1f ",Ptot,Pciel,tau*1e3); 99 101 100 102
Note:
See TracChangeset
for help on using the changeset viewer.