日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

根据Debye公式计算海水介电常数及趋肤深度

發(fā)布時(shí)間:2024/8/1 编程问答 47 豆豆
生活随笔 收集整理的這篇文章主要介紹了 根据Debye公式计算海水介电常数及趋肤深度 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

計(jì)算Debye公式及海水趨膚深度

  • 趨膚深度:
    δ=12k0∣Im(ε)∣\delta = \displaystyle\frac{1}{{2{{\rm{k}}_0}\left| {{\mathop{\rm Im}\nolimits} (\sqrt \varepsilon)} \right|}} δ=2k0?Im(ε?)1?
  • Debye公式:
    εsw=εsw∞+εsw0?εsw∞1+(j2πfτsw)1?α?jσi2πfε0{\varepsilon _{sw}} = {\varepsilon _{sw\infty}} + \displaystyle\frac{{{\varepsilon _{sw0}} - {\varepsilon _{sw\infty }}}}{{1 + {{(j2\pi f{\tau _{sw}})}^{1 - \alpha }}}} - j\displaystyle\frac{{{\sigma _i}}}{{2\pi f{\varepsilon _0}}} εsw?=εsw?+1+(j2πfτsw?)1?αεsw0??εsw???j2πfε0?σi??

    python代碼:
# -*- coding: utf-8 -*- """ Created on Thu Jun 4 21:49:37 2020@author: deyiwang計(jì)算入射頻率為f(GHz)時(shí), 海水介電系數(shù)及趨膚深度海水溫度及鹽度數(shù)據(jù)來源: @article{doi:10.1002/2013JC009716, author = {Gentemann, Chelle L.}, title = {Three way validation of MODIS and AMSR-E sea surface temperatures}, journal = {Journal of Geophysical Research: Oceans}, volume = {119}, number = {4}, pages = {2583-2598}, keywords = {AMSR-E, MODIS, SST, remote sensing, microwave, infrared}, doi = {10.1002/2013JC009716}, url = {https://agupubs.onlinelibrary.wiley.com/doi/abs/10.1002/2013JC009716}, eprint = {https://agupubs.onlinelibrary.wiley.com/doi/pdf/10.1002/2013JC009716}, abstract = {Abstract The estimation of retrieval uncertainty and stability are essential for the accurate interpretation of data in scientific research, use in analyses, or numerical models. The primary uncertainty sources of satellite SST retrievals are due to errors in spacecraft navigation, sensor calibration, sensor noise, retrieval algorithms, and incomplete identification of corrupted retrievals. In this study, comparisons to in situ data are utilized to investigate retrieval accuracies of microwave (MW) SSTs from the Advanced Microwave Scanning Radiometer—Earth Observing System (AMSR-E) and infrared (IR) SSTs from the Moderate Resolution Imaging Spectroradiometer (MODIS). The highest quality MODIS data were averaged to 25 km for comparison. The in situ SSTs are used to determine dependencies on environmental parameters, evaluate the identification of erroneous retrievals, and examine biases and standard deviations (STD) for each of the satellite SST data sets. Errors were identified in both the MW and IR SST data sets: (1) at low atmospheric water vapor a posthoc correction added to AMSR-E was incorrectly applied and (2) there is significant cloud contamination of nighttime MODIS retrievals at SST <10°C. A correction is suggested for AMSR-E SSTs that will remove the vapor dependency. For MODIS, once the cloud contaminated data were excluded, errors were reduced but not eliminated. Biases were found to be ?0.05°C and ?0.13°C and standard deviations to be 0.48°C and 0.58°C for AMSR-E and MODIS, respectively. Using a three-way error analysis, individual standard deviations were determined to be 0.20°C (in situ), 0.28°C (AMSR-E), and 0.38°C (MODIS).}, year = {2014} } """ import mathdef eypsilon_1(S,T):x = (87.134-0.1949*T-0.01276*T*T+0.002491*T*T*T)*(1+1.613*10**(-5)*T*S-0.003656*S+3.21*10**(-5)*S**2-4.232*10**(-7)*S*S*S)return xdef tao(S,T):x = (1.768 * 10**(-11)-6.086 * 10**(-13)*T+1.104 * 10**(-14)*T**(2)-8.111 * 10**(-17)*T**(3))*(1.0+2.282 * 10**(-5)*T*S-7.638 * 10**(-4)*S-7.760 * 10**(-6)*S**(2)+1.105 * 10**(-8)*S**(3))return xdef sigma(S,T):sigma = S*(0.182521-0.00146192*S+2.09324*10**(-5)*S**(2)-1.28205*10**(-7)*S**(3))*math.exp((T-25)*(0.02033+0.0001266*(25-T)+2.464 * 10**(-6)*(25-T)**(2)-S*(1.849 * 10**(-5)-2.551 * 10**(-7)*(25-T)+2.551 * 10**(-8)*(25-T)**(2))))return sigmadef varepsilon(S,T,f):eypsilon_0 = 8.854*10**(-12)omega = 2*math.pi*f*10**(9)kk = 0 + 1jxy = 4.9 + (eypsilon_1(S,T)-4.9)/(1-(omega*tao(S,T)*kk))-kk*(sigma(S,T))/(omega*eypsilon_0) return xydef delta(S,T,f):omega = 2*math.pi*f*10**(9)return (2*omega/299792458*(varepsilon(S,T,f)**(0.5)).imag)**(-1)if __name__=="__main__":f = 5.4max_i = 12min_i = 12 max_s = 0max_t = 0min_s = 0min_t = 0for S in range(30,33):for T in range(6,26):real = varepsilon(S,T,f).realimag = varepsilon(S,T,f).imagif imag>max_i:max_i = imagmax_s = Smax_t = Telif imag<min_i:min_i = imagmin_s = Smin_t = Tprint(max_s,"-",max_t,":",varepsilon(max_s,max_t,f))print(min_s,"-",min_t,":",varepsilon(min_s,min_t,f)) # maxmax = varepsilon(30,25,f) # minmin = varepsilon(32,6,f)print(delta(max_s,max_t,f))print(delta(min_s,min_t,f))
  • [1] T. B. A. Senior, K. Sarabandi, and F. T. Ulaby, “Measuring and modeling the backscattering cross section of a leaf,” Radio Science 22, 1109–1116 (1987).
  • [2] C. L. Gentemann, “Three way validation of modis and amsr-e sea surface temperatures,” Journal of Geophysical Research: Oceans 119(4), 2583–2598 (2014).

總結(jié)

以上是生活随笔為你收集整理的根据Debye公式计算海水介电常数及趋肤深度的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。