代码搜索:电压基准
找到约 3,921 项符合「电压基准」的源代码
代码结果 3,921
www.eeworm.com/read/177691/9440440
m exp3_1.m
clear
clc
close
t0=0;
tfinal=15;
x0=[0.5;0]; %初始化,电感电流为0,电容电压为0.5v
%tol=0.001; %数值计算精度
[t,x]=ode45('elecsys',t0,tfinal,x0);
%elecsys是系统微分方程的描述函数
figure(1)
subplot(211)
plot(t,x(:,1))
title
www.eeworm.com/read/372266/9514843
m exp3_1.m
clear
clc
close
t0=0;
tfinal=15;
x0=[0.5;0]; %初始化,电感电流为0,电容电压为0.5v
%tol=0.001; %数值计算精度
[t,x]=ode45('elecsys',t0,tfinal,x0);
%elecsys是系统微分方程的描述函数
figure(1)
subplot(211)
plot(t,x(:,1))
title
www.eeworm.com/read/372259/9515326
m exp3_1.m
clear
clc
close
t0=0;
tfinal=15;
x0=[0.5;0]; %初始化,电感电流为0,电容电压为0.5v
%tol=0.001; %数值计算精度
[t,x]=ode45('elecsys',t0,tfinal,x0);
%elecsys是系统微分方程的描述函数
figure(1)
subplot(211)
plot(t,x(:,1))
title
www.eeworm.com/read/362596/9989620
m exp3_1.m
clear
clc
close
t0=0;
tfinal=15;
x0=[0.5;0]; %初始化,电感电流为0,电容电压为0.5v
%tol=0.001; %数值计算精度
[t,x]=ode45('elecsys',t0,tfinal,x0);
%elecsys是系统微分方程的描述函数
figure(1)
subplot(211)
plot(t,x(:,1))
title
www.eeworm.com/read/164410/10109988
c hvda.c
//////////HVDA高差压差动输入,定时启动,由T2定时////////////////
/////////选择4,5通道为ADC0差动转化通道//////////////
/////////仪表为某速度仪,输出Vout:0-10V,且带有参考电压输出Vref:5V////
/////////仪表特性:Vout-Vref与速度成线性关系,量程为-1m/s至1m/s///////
/
www.eeworm.com/read/359177/10162350
m ch2example11statefun.m
function xdot=ch2example11statefun(t, x, flag, R,L,C,input,inputtimespan)
% 考虑RLC串联环路的状态方程函数
% 输入: t 当前计算时刻, flag 此处不用
% x为2#1矩阵, x(1)为电感上的电流; x(2)为电容电压
% R: 电阻值
% L: 电感值
% C: 电容值
% input 为在时间
www.eeworm.com/read/359177/10162473
m rcstateequation.m
function xdot=rcstateequation(t, x, flag, par)
% RC串联电路的状态方程函数
% 输入: t 当前计算时刻, x 当前状态-电容电压, flag 此处不用
% par 为2#1矩阵, par(1)为电阻值参数, par(2)为电容值参数
R=par(1); % 电路参数:电阻值
C=par(2); % 电路参数:电容量
xdot=(-1.
www.eeworm.com/read/355530/10259433
m exp3_1.m
clear
clc
close
t0=0;
tfinal=15;
x0=[0.5;0]; %初始化,电感电流为0,电容电压为0.5v
%tol=0.001; %数值计算精度
[t,x]=ode45('elecsys',t0,tfinal,x0);
%elecsys是系统微分方程的描述函数
figure(1)
subplot(211)
plot(t,x(:,1))
title
www.eeworm.com/read/355299/10277715
c hvda.c
//////////HVDA高差压差动输入,定时启动,由T2定时////////////////
/////////选择4,5通道为ADC0差动转化通道//////////////
/////////仪表为某速度仪,输出Vout:0-10V,且带有参考电压输出Vref:5V////
/////////仪表特性:Vout-Vref与速度成线性关系,量程为-1m/s至1m/s///////
/
www.eeworm.com/read/280934/10279093
txt readme.txt
ADC的AN0作为输入通道,每50ms定时器中断采样一次,每10个定时器周期(500ms)显示一次AD采样值(10次AD的平均值)
可选择显示电压值(ResultAdc_show2)或者ADC寄存器的值(ResultAdc_show1)