亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

重力加速度

  • GEAR ALGORITHM 計算算法,用于 計算微分計算,如求分子運動軌跡,力,加速度

    GEAR ALGORITHM 計算算法,用于 計算微分計算,如求分子運動軌跡,力,加速度

    標簽: ALGORITHM GEAR 計算 算法

    上傳時間: 2013-12-01

    上傳用戶:shanml

  • 這是采用msp430單片機采集freescale加速度信號

    這是采用msp430單片機采集freescale加速度信號,里面包括讀寫設置和中斷程序。

    標簽: freescale msp 430 單片機

    上傳時間: 2017-09-28

    上傳用戶:三人用菜

  • 加速度傳感器DXP資料及其相關資料

    0492、加速度傳感器DXP資料及其相關資料

    標簽:

    上傳時間: 2014-04-09

    上傳用戶:hello

  • 加速度讀取

    利用手機自帶加速度傳感器讀取加速度信息= = = =

    標簽: android加速度傳感器

    上傳時間: 2015-04-13

    上傳用戶:wuxingtao

  • 帶重力感應或方向傳感器橫豎屏切換測試

    帶重力感應或方向傳感器橫豎屏切換測試,可以看看。

    標簽: 重力感應 方向傳感器 測試

    上傳時間: 2016-05-31

    上傳用戶:abcdabcd

  • 重力異常正演MATLAB程序

    %球體 close all; G=6.67e-11; R=2;%球體半徑 p=4.0;%密度 D=10.0;%深度 M=(4/3)*pi*R^3*p;%質量 x=-20:1:20; g=G*M*D./((x.^2+D^2).^(3/2)); Vxz=-3*G*M*D.*x./((x.^2+D^2).^(5/2)); Vzz=G*M.*(2*D^2-x.^2)./((x.^2+D^2).^(5/2)); Vzzz=3*G*M.*(2*D^2-3.*x.^2)./((x.^2+D^2).^(7/2)); subplot(2,2,1) plot(x,g,'k-'); xlabel('水平距離(m)'); ylabel('重力異常值'); title('球體重力異常Δg'); grid on subplot(2,2,2) plot(x,Vxz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vxz'); grid on subplot(2,2,3) plot(x,Vzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzz'); grid on subplot(2,2,4); plot(x,Vzzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzzz'); grid on %% %水平圓柱體 close all G=6.67e-11; p=10.0;%線密度 D=100.0;%深度 x=-200:1:200; g=G*2*p*D./(x.^2+D^2); Vxz=4*G*p*D.*x./(x.^2+D^2).^2; Vzz=2*G*p.*(D^2-x.^2)./(x.^2+D^2).^2; Vzzz=4*G*p.*(D^2-3.*x.^2)./((x.^2+D^2).^3); subplot(2,2,1) plot(x,g,'k-'); xlabel('水平距離(m)'); ylabel('重力異常值'); title('水平圓柱體重力異常Δg'); grid on subplot(2,2,2) plot(x,Vxz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vxz'); grid on subplot(2,2,3) plot(x,Vzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzz'); grid on subplot(2,2,4); plot(x,Vzzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzzz'); grid on %% %垂直臺階 G=6.67e-11; p=4.0;%密度 h1=50.0;%下層深度 h2=40.0;%上層深度 x=-100:1:100; g=G*p.*(pi*(h1-h2)+x.*log((x.^2+h1^2)./(x.^2+h2^2))+2*h1.*atan(x./h1)-2*h2.*atan(x./h2)); Vxz=G*p.*log((h1^2+x.^2)./(h2^2+x.^2)); Vzz=2*G*p.*atan((x.*(h1-h2))./(x.^2+h1*h2)); Vzzz=2*G*p.*x*(h1^2-h2^2)./((h1^2+x.^2).*(x.^2+h2^2)); subplot(2,2,1) plot(x,g,'k-'); xlabel('水平距離(m)'); ylabel('重力異常值'); title('垂直臺階重力異常Δg'); grid on subplot(2,2,2) plot(x,Vxz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vxz'); grid on subplot(2,2,3) plot(x,Vzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzz'); grid on subplot(2,2,4); plot(x,Vzzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzzz'); grid on %% %傾斜臺階 G=6.67e-11; p=4.0;%密度 h1=50.0;%下層深度 h2=40.0;%上層深度 a=pi/6;%傾斜角度 x=-500:1:500; g=G*p.*(pi*(h1-h2)+2*h1.*atan((x+h1*cot(a))./h1)-2*h2.*atan((x+h2*cot(a))./h1)+x.*sin(a)^2.*log(((h1+x.*sin(a).*cos(a)).^2+x.^2.*sin(a)^4)./((h2+x.*(sin(a)*cos(a))).^2+x.^2.*sin(a)^4))); Vxz=G*p.*(sin(a)^2.*log(((h1*cot(a)+x).^2+h1^2)./((h2*cot(a)+x).^2+h2^2))-2*sin(2*a).*(atan((h1/sin(a)+x.*cos(a))./(x.*sin(a)))-atan((h2/sin(a)+x.^cos(a))./(sin(a).*x)))); Vzz=G*p.*(0.5*sin(2*a)^2.*log(((h1*cot(a)+x).^2+h1^2)./((h2*cot(a)+x).^2+h2^2))+2*sin(a)^2.*(atan((h1/sin(a)+x.*cos(a))./(x.*sin(a)))-atan((h2/sin(a)+x.*cos(a))./(x.*sin(a))))); Vzzz=2*G*p*sin(a)^2.*((x+2*h2*cot(a))./((h2*cot(a)+x).^2+h2^2)-(x+2*h1*cot(a))./((h1*cot(a)+x).^2+h1^2)); subplot(2,2,1) plot(x,g,'k-'); xlabel('水平距離(m)'); ylabel('重力異常值'); title('傾斜臺階重力異常Δg'); grid on subplot(2,2,2) plot(x,Vxz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vxz'); grid on subplot(2,2,3) plot(x,Vzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzz'); grid on subplot(2,2,4); plot(x,Vzzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzzz'); grid on %% %鉛錘柱體 G=6.67e-11; p=4.0;%密度 h1=50.0;%下層深度 h2=40.0;%上層深度 a=3;%半徑 x=-500:1:500; g=G*p.*((x+a).*log(((x+a).^2+h1^2)./((x+a).^2+h2^2))-(x-a).*log(((x-a).^2+h1^2)./((x-a).^2+h2^2))+2*h1.*(atan((x+a)./h1)-atan((x-a)./h1))-2*h2.*(atan((x+a)./h2)-atan((x-a)./h2))); Vxz=G*p.*log((((x+a).^2+h1^2).*((x-a).^2+h2^2))./(((x+a).^2+h2^2).*((x-a).^2+h1^2))); Vzz=2*G*p.*(atan(h1./(x+a))-atan(h2./(x+a))-atan(h1./(x-a))+atan(h2./(x-a))); Vzzz=2*G*p.*((x+a)./((x+a).^2+h2^2)-(x+a)./((x+a).^2+h1^2)-(x-a)./((x-a).^2+h2^2)+(x-a)./((x-a).^2+h1^2)); subplot(2,2,1) plot(x,g,'k-'); xlabel('水平距離/m') ylabel('重力異常值') title('鉛垂柱體重力異常') grid on subplot(2,2,2) plot(x,Vxz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vxz'); grid on subplot(2,2,3) plot(x,Vzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzz'); grid on subplot(2,2,4); plot(x,Vzzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzzz'); grid on

    標簽: MATLAB 重力 程序

    上傳時間: 2019-05-10

    上傳用戶:xiajiang

  • 無人機加速度計、陀螺儀和磁力計數據采集

    設計電路編寫程序運用無人機加速度計、陀螺儀和磁力計數據采集飛行過程中的坐標加速度位置

    標簽: 無人機 加速度計 數據采集 陀螺儀 磁力計

    上傳時間: 2019-05-12

    上傳用戶:急急急急急急

  • ADXL345加速度傳感器完整資料含測試程序

    ADXL345加速度傳感器完整資料含測試程序,保證能用。包含原理圖,程序,數據手冊等

    標簽: ADXL 345 加速度傳感器 測試程序

    上傳時間: 2019-12-30

    上傳用戶:Marco

  • 859-基于三軸加速度傳感信號采集與實時顯示論文

    859-基于三軸加速度傳感信號采集與實時顯示論文

    標簽: 加速度傳感器 信號采集

    上傳時間: 2021-10-20

    上傳用戶:

  • GY-91 MPU9250+BMP280 10DOF九軸傳感器模塊加速度陀螺儀測試軟件源碼+相關硬

    GY-91 MPU9250+BMP280 10DOF九軸傳感器模塊加速度陀螺儀測試軟件源碼+相關硬件技術手冊

    標簽: mpu9250 bmp280 傳感器

    上傳時間: 2021-10-25

    上傳用戶:

主站蜘蛛池模板: 尖扎县| 武隆县| 慈利县| 英德市| 灵石县| 淅川县| 新巴尔虎右旗| 潍坊市| 张家口市| 丁青县| 巴塘县| 铜梁县| 商水县| 元氏县| 曲松县| 林州市| 合江县| 吕梁市| 漠河县| 永川市| 乐山市| 孝感市| 许昌市| 阳西县| 大冶市| 和顺县| 从化市| 叙永县| 九台市| 斗六市| 固镇县| 固始县| 安远县| 崇州市| 麻阳| 南城县| 盐边县| 丽江市| 金溪县| 长丰县| 社会|