大气视热源Q1和视水汽汇Q2的计算

之前一直使用的从师兄师姐那里继承来的Fortran脚本计算,并且需要自行将原始再分析资料转化为二进制文件,过于繁琐

之前在NCL官网有看见过写好的基于NCEP资料计算的脚本

NCL: Divergent and Rotational Winds; Mass Flux; Yanai Heat (ucar.edu)

也在某公众号上看过python版本的,但是博主对比之后会有细微差异

https://mp.weixin.qq.com/s/6H6TOT_OxQOYku9cbHolXA

自己试了一下NCL的版本,原脚本是写给日分辨率资料使用的,我用来计算月均值貌似也可以,目前看着运行没啥异常。

计算主要分为两步,先计算q1q2,为局地变化项,平流项,垂直对流项之和,然后分别乘以Cp和L


但是由于本人天原和动力气象都没学好,且后来一直做环境方向,所以对这个脚本还存在很多疑惑的点,先记录下来以后有机会一个一个解决。

1.一般文献里Q1Q2的单位都是w/m2,但是脚本计算的逐层的Q1Q2单位不一致,那要是画剖面怎么办呢?


并且,似乎,原作者也不清楚该怎么对逐层数据的单位进行转换


2. 对q2积分完之后所有格点的值都变成了空值,不知道是不是因为用的月值?理论上不应该啊,毕竟q1算的也没问题(我也不知道是不是真的没问题)

3. 为什么垂直积分的时候没有用到地表气压?

4.对Q1Q2整层积分之后,单位经过自己的换算都变成了w/m2

先注释掉开头自定义函数中对q1q2单位向day的转化,直接以原始的s进行计算


并且在主程序中添加对整层积分完q1q2向Q1Q2的计算


最后一点,一般我们使用的都是Q1Q2,不知道原作者为什么输出了q1q2,顺带把输出变量也给改了。


Code:

undef("Q1Q2_yanai.ncl")

function Q1Q2_yanai(time[*]:numeric,p,u,v,H,T,omega,npr[1]:integer,opt[1]:logical)

;+++++++++++++++++++++++++++++++++++++++++++++++++++++

; NOT SUPPORTED: NOT FULLY TESTED : WORK in PROGRESS

;       **CHECK UNITS**

;+++++++++++++++++++++++++++++++++++++++++++++++++++++

; Nomenclature

; time  - "seconds since ..."

; p  - Pressure [Pa]

; u,v  - zonal, meridional wind components[m/s]

; H  - specific humidity [g/kg]

; T  - temperature [K] or [C]

; omega - vertical velocity [Pa/s]

; npr  - demension number corresponding to pressure dimension

; opt  - set to False

;+++++++++++++++++++++++++++++++++++++++++++++++++++++

;; Q1 = Cp*dTdt - Cp*(omega*ss-advT)

;; Q1 = Cp*[ dTdt- omega*ss-advT ]

;; q1 = dTdt- omega*ss-advT

;; Q1 = Cp*[ q1 ]      

;;

;; Q1 = Total diabatic heating [including radiation, latent heating, and

;;   sfc heat flux) and sub-grid scale heat flux convergence

;;---

;; q2 = -(dHdt +advH +dHdp)

;; Q2 = Lc*[ q2 ]

;;

;; Q2 = the latent heating due to condensation or evaporation processes

;;   and subgrid-scale moisture flux convergences,

;++++++++++++++++++++++++++++++++++++++++++++

; References:

;

; https://renqlsysu.github.io/2019/02/01/apparent_heat_source/

;

; Yanai, M. (1961):

; A detailed analysis of typhoon formation.

; J. Meteor. Soc. Japan , 39 , 187–214

;

; Yanai et al (1973):

; Determination of bulk properties of tropical cloud clusters

;  from large-scale heat and moisture budgets.

; J.Atmos. Sci. , 30 , 611–627,

;https://doi.org/10.1175/1520-0469(1973)030<0611:DOBPOT>2.0.CO;2

;

; Yanai, M and T.Tomita (1998):

; https://pdfs.semanticscholar.org/fb57/a6a59cc4a684194b5e622ea6f875d0b4439a.pdf

;********************************************

; Diabatic heating in the atmosphere is a combined consequence of

; radiative fluxes, phase changes of water substance, and turbulent

; flux of sensible heat from the earth's surface.

;

; In the tropics, it is the major driving force of the atmospheric circulation.

; It responds to the vertical gradient of diabatic heating.

;********************************************

local dimp, dimu, dimv, dimH, dimT, dimo    \

  , rankp, ranku, rankv, rankH, rankT, ranko  \

  , Cp, Lc, dTdt, ss, opt_adv, long_name, units \

  , gridType, advT, q1, Q1, dHdt, advH, loq, q2, Q2

begin

;;    Use for error testing

;;dimp   = dimsizes(p)

;;dimu   = dimsizes(u)

;;dimv   = dimsizes(v)

;;dimH   = dimsizes(H)

;;dimT   = dimsizes(T)

;;dimo   = dimsizes(omega)

;;rankp   = dimsizes(dimp)

;;ranku   = dimsizes(dimu)

;;rankv   = dimsizes(dimv)

;;rankH   = dimsizes(dimH)

;;rankT   = dimsizes(dimT)

;;ranko   = dimsizes(dimo)

;*******************************************

;---Compute local dT/dt [K/s]

;*******************************************

 dTdt = center_finite_diff_n (T,time,False,0,0) ; 'time' is 'seconds since'

 copy_VarCoords(T, dTdt)

 dTdt@longname = "Temperature: Local Time derivative"

 dTdt@units = "K/s"

 printVarSummary(dTdt)

 printMinMax(dTdt,0)

 print("-----")


;****************************************

;---Compute static stability [K/Pa] <==> or "K-m-s2/kg"

;****************************************

 ss = static_stability (p , T, 1, 0)

 printVarSummary(ss)

 printMinMax(ss,0)

 print("-----")

;****************************************

;---Compute advection term: spherical harmonics

;---U*(dT/dx) + V*(dT/dy): [m/s][K/m] -> [K/s]

;****************************************

 opt_adv= 0

 long_name = "temp advection"

 units = "K/s"

 gridType = 1

 advT  = advect_variable(u,v,T,gridType,long_name,units,opt_adv)


;****************************************

;---Net Heat

;****************************************

 q1 = dTdt - (omega*ss-advT)  ; term_1 - term_2

 q1@long_name = "q1: Net Heat Flux"

 q1@units = "K/s"

 copy_VarCoords(T,q1)

 printVarSummary(q1)

 printMinMax(q1,0)

 print("-----")

;****************************************

;---Apparent Heat Source

;****************************************

 Cp   = 1004.64

 Cp@long_name = "specific heat of dry air at constant pressure"

 Cp@units = "J/(K-kg)"; [kg-m2/s2]/(K-kg) => [kg-m2]/[K-kg-s2] => m2/[K-s2]

 Q1 = Cp*q1 ; [J/(K-kg)][K/s] -> [J/(kg-s)] -> [(kg-m2/s2)/(kg-s)) -> [ m2/s3 ]

     ; [J/(K-kg)][K/s] -> [(J/s)(1/kg)] -> W/kg???

 Q1@long_name = "Q1: Total Diabatic Heating as the Apparent Heat Source"

 Q1@units = "m2/s3" 

 copy_VarCoords(T,Q1)

 printVarSummary(Q1)

 printMinMax(Q1,0)

 print("-----")

;*******************************************

;---Compute local dH/dt 

;*******************************************

 dHdt = center_finite_diff_n (H,time,False,0,0)

 copy_VarCoords(H, dHdt)

 dHdt@longname = "Specific Humidity: Local Time derivative"

 dHdt@units = "g/(kg-s)" ; (g/kg)/s

 printVarSummary(dHdt)

 printMinMax(dHdt,0)

 print("-----")

;****************************************

;---Compute advection term: global fixed grid: spherical harmonics

;---U*(dH/dlon) + V*(dH/dlat)

;****************************************

 long_name = "moisture advection"

 units = "g/(kg-s)" ; (m/s)*(g/kg)*(1/m)

 advH  = advect_variable(u,v,H,gridType,long_name,units,opt_adv)

;****************************************

;---Compute vertical movement of H

;****************************************

 dHdp = center_finite_diff_n (H,p,False,1,npr)

 copy_VarCoords(H, dHdp)

 dHdp@longname = "Specific Humidity: Local Vertical Derivative"

 dHdp@units = "g/(kg-Pa)"; (g/kg)/Pa

 printVarSummary(dHdp)

 printMinMax(dHdp,0)

 print("-----")

 dHdp = omega*dHdp     ; overwrite ... convenience

 dHdp@longname = "Specific Humidity: Vertical Moisture Transport"

 dHdp@units = "g/(kg-s)"  ; [(Pa/s)(g/kg)/Pa)]

 printVarSummary(dHdp)

 printMinMax(dHdp,0)

 print("-----")


;****************************************

;---Apparent Moisture Sink

;****************************************

 q2  = -(dHdt +advH +dHdp)

 q2@long_name = "q2: moisture sink"   ; "?apparent? drying rate"

 q2@units = "g/(kg-s)"

 copy_VarCoords(T,q2)

 printVarSummary(q2)

 Lc   = 2.26e6  ; [J/kg]=[m2/s2] Latent Heat of Condensation/Vaporization

 Lc@long_name = "Latent Heat of Condensation/Vaporization"

 Lc@units = "J/kg" ; ==> "m2/s2"

 Q2  = Lc*q2    ; (J/kg)(g/(kg-s))->(m2/s2)(g/(kg-s)) ->[(g/kg)][m2/s3]

        ; J[oule]-> kg-m2/s2 = N-m = Pa/m3 = W-s  ; energy   

 Q2@long_name = "Q2: Apparent Moisture Sink"

 Q2@units = "(g/kg)[m2/s3]"

 copy_VarCoords(T,Q2)

 printVarSummary(Q2)

 printMinMax(Q2,0)

 print("-----")


;****************************************

;---Make q1, q2 to per day

;****************************************

; q1 = q1*86400

; q2 = q2*86400

; q1@units = "K/day"

; q2@units = "g/(kg-day)"


;****************************************

;---Make Q1, Q2 to per W/m2

;****************************************

;;Q1 = Q1*?????

;;Q2 = Q2*?????

;;Q1@units = "W/m2"

;;Q2@units = "W/m2"

 return( [/q1, q2, Q1, Q2/] )

end

;==============================================================================

;         MAIN

;==============================================================================

load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"

load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl"

load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl"

 netCDF = True             ; Write netCDF

;---Variable and file handling

 diri  = "/public/home/sunxiaoyun/datadir/ncep_monthly/pressure_new/"

 f1  = addfile(diri+"air.mon.mean.nc","r") ; daily mean data

 f2  = addfile(diri+"omega.mon.mean.nc","r") 

 f3  = addfile(diri+"uwnd.mon.mean.nc","r")

 f4  = addfile(diri+"vwnd.mon.mean.nc","r")

 f5  = addfile(diri+"rhum.mon.mean.nc","r")

                  ; convenience: make all:S->N

 temp  = f1->air(:,0:7,::-1,:)        ; degK

 omega = f2->omega(:,0:7,::-1,:)        ; Pascal/s

 uwnd  = f3->uwnd(:,0:7,::-1,:)       ; m/s

 vwnd  = f4->vwnd(:,0:7,::-1,:)       ; m/s

 rhum  = f5->rhum(:,:,::-1,:)       ; % 

;---Need specific humidity

 p  = f1->level(0:7)            ; hPa [*]

 p4d = conform(temp, p, 1)

 printVarSummary(p)

 printVarSummary(p4d)

 printVarSummary(rhum)

 q  = mixhum_ptrh (p4d, temp, rhum,-2)    ; g/kg

 delete( [/p4d, rhum/] )

 q@long_name = "specific humidity"

 q@units = "g/kg"

 copy_VarCoords(temp, q)

 printVarSummary(q)

 printMinMax(q, 0)

;---Convert "hours since ..." to "seconds since ..."

 time  = f5->time            ; "hours since 1800-1-1"

 time  = time*3600             

 time@units = "seconds since 1800-1-1 00:00:0.0"

 printVarSummary(time)

 print("---")

 t  = time     ; Lyndz' name

 ymdh = cd_calendar(time,-3)

;---Convert hPa -> Pa for function

 p  = p*100             ; Pa [100000,...,10000]

 p@units = "Pa"

 p!0 = "p"

 p&p =p      ; not necessary

 printVarSummary(p)

 print("---")

;++++++++++++++++++++++++++++++++++++++++++++++++++++++

 Cp  = 1004.64  ; specific heat of dry air at constant pressure

 Cp@units = "J/(K*kg)"

 Lc   = 2.26e6  ; [J/kg]=[m2/s2] Latent Heat of Condensation/Vaporization

 Lc@long_name = "Latent Heat of Condensation/Vaporization"

 Lc@units = "J/kg" ; ==> "m2/s2"

 npr = 1

 opt = True

 q1q2 = Q1Q2_yanai(time,p,uwnd,vwnd,q,temp,omega,npr,opt)

 print(q1q2)

 q1 = q1q2[0]

 q2 = q1q2[1]

 Q1 = q1q2[2]

 Q2 = q1q2[3]

;********************************************

;---Vertical integration

; J[oule]  kg-m2/s2 = N-m = Pa/m3 = W-s  ; energy    

;********************************************

 ptop = 30000.0        ; Pa

 pbot = 100000.0

 vopt = 1

 g = 9.80665       ; [m/s2] gravity at 45 deg lat used by the WMO

 dp  = dpres_plevel_Wrap(p,pbot,ptop,0)

 dpg = dp/g         ; Pa/(m/s2)=> (Pa-s2)/m

 dpg@long_name = "Layer Mass Weighting"

 dpg@units = "kg/m2"    ; dp/g => Pa/(m/s2) => [kg/(m-s2)][m/s2] reduce to (kg/m2)

              ;    Pa (s2/m) => [kg/(m-s2)][s2/m]=>[kg/m2]

 dpg := conform(q1,dpg,1)    ; reassign [convenience]

 q1int = wgt_vertical_n(q1,dpg,vopt,1) ; SUM[q1*dpg] => (K/s)(kg/m2)

 q1int@long_name = "Heat Source: vertically integrated"

 q1int@units = "(K/s)(kg/m2)"  ; (K/s)(kg/m2) => (kg-K)/(m2-s)

 printVarSummary(q1int)

 copy_VarCoords(temp(:,0,:,:),q1int)

 printMinMax(q1int,0)

 print("-----")

 q2int = wgt_vertical_n(q2,dpg,vopt,1)

 q2int@long_name = "Moisture Sink: vertically integrated"

 q2int@units = "g/(s-m2)"

 copy_VarCoords(temp(:,0,:,:),q2int)

 printMinMax(q2int,0)

 print("-----")

 Q1int   = Cp*q1int    ; (K/s)(kg/m2)*(J/(K*kg)) => J/(s*m2) => w/m2

 Q1int@long_name = "Q1: Total Diabatic Heating as the Apparent Heat Source"

 Q1int@units = "w/m2"

 copy_VarCoords(temp(:,0,:,:),Q1int)

 printMinMax(Q1int,0)

 print("-----")

 Q2int   = Lc*q2int*1000  ; g/(s-m2)*(J/kg) => J/(1000*s*m2) => w/m2/1000

 Q2int@long_name = "Q2: Apparent Moisture Sink"

 Q2int@units = "w/m2"

 copy_VarCoords(temp(:,0,:,:),Q2int)

 printMinMax(Q2int,0)

 print("-----")

;***********************************************

;---Save to a netcdf file

;***********************************************

 if (netCDF)

   diro = "./"

   filo = "YANAI.apparent_heat_ncep_mon.nc"

   ptho = diro+filo

  system("/bin/rm -f "+ptho)

   ncdf = addfile(ptho,"c")


   fAtt = True

  fAtt@title   = "Apparent Heat Source based on Yanai et al. 1973"

  fAtt@source_name = "NCEP-NCAR Reanalysis 2"

  fAtt@source_URL  = "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html"

  fAtt@source   = "NOAA/OAR/ESRL PSD, Boulder, Colorado, USA"

  fAtt@Conventions = "None"

  fAtt@creation_date = systemfunc("date")

  fileattdef(ncdf,fAtt)    ; copy file attributes


  filedimdef(ncdf,"time",-1,True) ; make time an UNLIMITED dimension

  ncdf->Q1 = Q1

  ncdf->Q2 = Q2

  ncdf->Q1int = Q1int

  ncdf->Q2int = Q2int

 end if

; ;***********************************************

; ;---Plot

; ;***********************************************

; nt = 4

; YMDH = ymdh(nt)

; LEVP = 600

; opt = True

; opt@PrintStat = True

; stat_q1 = stat_dispersion(q1(nt,{LEVP},:,:), opt )

; stat_q2 = stat_dispersion(q2(nt,{LEVP},:,:), opt )

; stat_q1i= stat_dispersion(q1int(nt,:,:), opt )

; stat_q2i= stat_dispersion(q2int(nt,:,:), opt )

; plot = new(2,graphic)

; wks= gsn_open_wks("png","q2q1_yanai")   ; send graphics to PNG file


; ;--- mfc_adv and mfc_con at a specified pressure level

; res      = True    ; plot mods desired

;res@gsnDraw   = False    ; don't draw yet

;res@gsnFrame    = False     ; don't advance frame yet

;res@cnFillOn    = True    ; turn on color

;res@cnLinesOn  = False    ; turn off contour lines

;res@cnLineLabelsOn = False    ; turn off contour lines

; ;res@cnFillPalette = "ViBlGrWhYeOrRe" ; set White-in-Middle color map

;res@cnFillPalette = "amwg256"   ; set White-in-Middle color map

; ;res@cnFillMode   = "RasterFill"

;res@mpFillOn    = False     ; turn off map fill

; ;;res@lbLabelBarOn  = False    ; turn off individual cb's

;res@lbOrientation = "Vertical"

;               ; Use a common scale

; res@cnLevelSelectionMode = "ManualLevels"; manual set levels so lb consistent

;res@cnMaxLevelValF = 5.0   ; max level

;res@cnMinLevelValF  = -res@cnMaxLevelValF ; min level

;res@cnLevelSpacingF  = 0.20  ; contour interval

;res@gsnCenterString  = LEVP+"hPa"

; plot(0) = gsn_csm_contour_map(wks,q1(nt,{LEVP},:,:),res)

;res@cnMaxLevelValF = 5.0   ; max level

;res@cnMinLevelValF  = -res@cnMaxLevelValF ; min level

;res@cnLevelSpacingF  = 0.20  ; contour interval

; plot(1) = gsn_csm_contour_map(wks,q2(nt,{LEVP},:,:),res)

; resP      = True    ; modify the panel plot

;resP@gsnMaximize  = True

; resP@gsnPanelMainString := YMDH

; ;;resP@gsnPanelLabelBar = True    ; add common colorbar

;gsn_panel(wks,plot,(/2,1/),resP)  ; now draw as one plot

;delete(res@gsnCenterString) ; not used for this plot

;res@cnMaxLevelValF =14000.0 ; max level

;res@cnMinLevelValF  = -res@cnMaxLevelValF ; min level

;res@cnLevelSpacingF  = 500.0  ; contour interval

; plot(0) = gsn_csm_contour_map(wks,q1int(nt,:,:),res)

;res@cnMaxLevelValF = 7000.0  ; max level

;res@cnMinLevelValF  = -res@cnMaxLevelValF ; min level

;res@cnLevelSpacingF  = 500.0  ; contour interval

; plot(1) = gsn_csm_contour_map(wks,q2int(nt,:,:),res)

;gsn_panel(wks,plot,(/2,1/),resP)  ; now draw as one plot

; ;---Cross section

; rescx       = True      ; plot mods desired

;rescx@gsnMaximize   = True

; LAT = 10

; if (LAT.ge.0) then

;  rescx@tiMainString = YMDH+": "+LAT+"N"

; else

;  rescx@tiMainString = YMDH+": "+ABS(LAT)+"S"

; end if

;rescx@cnLevelSelectionMode = "ManualLevels"   ; manual contour levels

;rescx@cnLinesOn    = False    ; turn off contour lines

;rescx@cnLineLabelsOn  = False

;rescx@cnFillOn    = True       ; turn on color fill

;rescx@cnFillPalette   = "ViBlGrWhYeOrRe" ; set White-in-Middle color map

;rescx@cnFillPalette   = "amwg256"   ; set White-in-Middle color map

;rescx@cnMaxLevelValF = 5.0      ; max level

;rescx@cnMinLevelValF  = -rescx@cnMaxLevelValF ; min level

;rescx@cnLevelSpacingF  =0.25      ; contour interval

; plt_q1 = gsn_csm_pres_hgt(wks,q1(nt,{1000:300},{LAT},:),rescx)

;rescx@cnMaxLevelValF = 5.0      ; max level

;rescx@cnMinLevelValF  = -rescx@cnMaxLevelValF ; min level

;rescx@cnLevelSpacingF  =0.25      ; contour interval

; plt_q2 = gsn_csm_pres_hgt(wks,q2(nt,{1000:300},{LAT},:),rescx)

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,732评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,496评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,264评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,807评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,806评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,675评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,029评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,683评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,704评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,666评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,773评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,413评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,016评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,204评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,083评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,503评论 2 343

推荐阅读更多精彩内容