代码搜索:微分几何
找到约 3,133 项符合「微分几何」的源代码
代码结果 3,133
www.eeworm.com/read/444227/1735250
m sh_motor_start_so.m
% 编写求解起动过程微分方程的脚本函数
% 将该脚本函数定义为sh_motor_vary_so(shunt_motor_self_excited_solver)
[t,y]=ode23(@sh_motor_se_ode,[0:.01:10],[0;0;0])
% 首先绘制if=f(t)曲线
subplot(3,1,1),
plot(t,y(:,1))
xlabel('Time[T]')
www.eeworm.com/read/444227/1735251
m sh_motor_vary_ode.m
% 编写起动过程微分方程的M—函数
% 将该M—函数定义为sh_motor_vary_ode(shunt_ motor_self_ode)
function dydt=sh_motor_vary_ode(t,y)
% 下面输入电机基本数据:
uf=250;u=220;IaN=633;nN=617;TLN=3275;Lf=9;Rf=12;Ra=0.012;La=0.00035;Laf=0.1
www.eeworm.com/read/444227/1735252
m sh_motor_se_so.m
% 编写求解起动过程微分方程的脚本函数
% 将该脚本函数定义为sh_motor_se_so(shunt_motor_self_excited_solver)
[t,y]=ode23(@sh_motor_se_ode,[0:.01:10],[0;0;0])
% 首先绘制if=f(t)曲线
subplot(3,1,1),
plot(t,y(:,1))
xlabel('Time[T]')
www.eeworm.com/read/444227/1735253
m sh_motor_se_ode.m
% 编写起动过程微分方程的M—函数
% 将该M—函数定义为sh_motor_se_ode(shunt_ motor_self_ode)
function dydt=sh_motor_se_ode(t,y)
% 下面输入电机基本数据:
uf=250;u=250;IaN=633;nN=617;TLN=3275;Lf=9;Rf=12;Ra=0.012;La=0.00035;Laf=0.18;J=
www.eeworm.com/read/444227/1735254
m sh_motor_start_ode.m
% 编写起动过程微分方程的M—函数
% 将该M—函数定义为sh_motor_se_ode(shunt_ motor_self_ode)
function dydt=sh_motor_se_ode(t,y)
% 下面输入电机基本数据:
uf=250;u=250;IaN=633;nN=617;TLN=3275;Lf=9;Rf=12;Ra=0.012;La=0.00035;Laf=0.18;J=
www.eeworm.com/read/444227/1735256
m sh_motor_stop_ode.m
% 编写起动过程微分方程的M—函数
% 将该M—函数定义为sh_motor_stop_ode(shunt_ motor_self_ode)
function dydt=sh_motor_stop_ode(t,y)
% 下面输入电机基本数据:
uf=250;u=0;IaN=633;nN=617;TLN=3275;Lf=9;Rf=12;Ra=0.012;La=0.00035;Laf=0.18;
www.eeworm.com/read/444227/1735258
m sh_motor_start_so.m
% 编写求解起动过程微分方程的脚本函数
% 将该脚本函数定义为sh_motor_start_so(shunt_motor_self_excited_solver)
[t,y]=ode23(@sh_motor_se_ode,[0:.01:10],[0;0;0])
% 首先绘制if=f(t)曲线
subplot(3,1,1),
plot(t,y(:,1))
xlabel('Time[T]'
www.eeworm.com/read/476058/6773184
m elecsys.m
%微分方程函数
function xdot=elecsys(t,x) %状态导数
Vs=1;
R=1.4;
L=2;
C=0.32;
xdot=[x(2)/C;1/L*(Vs-x(1)-R*x(2))];
%格式
% function xdot=filename(t,x)
% xdot=[表达式1;表达式2;表达式3;...;表达式n-1]
% 表达式1 对应
www.eeworm.com/read/395679/8161257
m elecsys.m
%微分方程函数
function xdot=elecsys(t,x) %状态导数
Vs=1;
R=1.4;
L=2;
C=0.32;
xdot=[x(2)/C;1/L*(Vs-x(1)-R*x(2))];
%格式
% function xdot=filename(t,x)
% xdot=[表达式1;表达式2;表达式3;...;表达式n-1]
% 表达式1 对应
www.eeworm.com/read/195211/8168522
c grkt10.c
#include "stdio.h"
#include "stdlib.h"
void RKT(t,y,n,h,k,z)
int n; /*微分方程组中方程的个数,也是未知函数的个数*/
int k; /*积分的步数(包括起始点这一步)*/
double t; /*积分的起始点t0*/
double h; /*积分的步长*/
double y[]; /