代码搜索结果
找到约 4,719 项符合
Temperature 的代码
cf.lua
-- temperature conversion table (celsius to farenheit)
for c0=-20,50-1,10 do
io.write("C ")
for c=c0,c0+10-1 do
io.write(string.format("%3.0f ",c))
end
io.write("\n")
io.write("F ")
for c=c
ex6_1.m
%
% This program plots Si, Ge, and GaAs conductivities
% as a function of temperature as described in Example 6.1
%
% Copyright (c) 1999 by P.Bretchko and R.Ludwig
% "RF Circuit Design:
boltzman.edt
Temperature Valid Length Tour
100.000000 no []->[]->[]->[]->[]->[]->[]->[]->[]->[]
99.000000 no []->[]->[]->[]->[]->[]->[]->[]->[]->[]
98.01000
example2b.m
% Transient temperature distribution in an
% infinite plate with the thickness 2L.
% Initially the plate has the temperature
% Tinit when it is exposed to a fluid with
% the temperature Tfluid.
%
example1fvm.m
%Temperature distribution in a rod
%See example 9
%Finite volume method
%TDMA
clear all;
T = [];P=[];Q=[];ae=[];aw=[];ap=[];analytical=[];
nn = input('Number of control volumes = ');
n = nn+2;%
example1c.m
%Temperature distribution in a rod
%See example 9
%Finite difference methof
%TDMA
clear all;
T = [];P=[];Q=[];analytical=[];
nn = input('Number of increment = ')
n = nn+1;% number of grid poin
example1b.m
%Temperature distribution in a rod
%See example 9
%Discretization method: Finite difference
% Solution method: SOR
clear all;
T = [];x=[];P=[];Q=[];
nn = input('Number of increment = ')
n = n
example2a.m
% Transient temperature distribution in aninfinite plate with the thickness 2L.
% Initially temperature is Tinit when it is exposed to a fluid with
% the temperature Tfluid.
% Explicit method
%
example2bfvm.m
% Transient temperature distribution in an infinite plate with the thickness 2L.
% Initially the plate is at Tinit when it is exposed to a fluid with
% the temperature Tfluid.
% Implicit scheme
%
example2afvm.m
% Transient temperature distribution in aninfinite plate with the thickness 2L.
% Initially temperature is Tinit when it is exposed to a fluid with
% the temperature Tfluid.
% Explicit method
%
c