当前位置: 首页 > news >正文

做毕设好的网站网站被禁用如何解决

做毕设好的网站,网站被禁用如何解决,做企业网站要不要我们自己提供网站相关的图片?,男生可以做网站编辑工作吗零、创建DATA目录 # 1.创建一个DATA目录用于存放数据(一般为fnl数据,放在Build_WRF目录下)。 mkdir DATA # 2.进入 DATA cd DATA 一、WPS预处理 在模拟之前先确定模拟域(即模拟范围),并进行数据预处理&#xff08…

零、创建DATA目录   

# 1.创建一个DATA目录用于存放数据(一般为fnl数据,放在Build_WRF目录下)。
mkdir DATA
# 2.进入 DATA
cd DATA

一、WPS预处理

      在模拟之前先确定模拟域(即模拟范围),并进行数据预处理(插值陆面数据,比如地形,土壤等数据;插值气象数据到模拟域)。

(一)解压GRIB数据(ungrib.exe)

I.解压GRIB数据---GFS(Matthew案例研究数据)

# 1.下载官网案例数据(matthew) 【此处数据可替换自己所需的数据】
wget https://www2.mmm.ucar.edu/wrf/TUTORIAL_DATA/matthew_1deg.tar.gz
# 2.解压数据包
# 得到matthew文件夹
tar -xf matthew_1deg.tar.gz
​
# 【非必要步骤】
​# 3.用下面的命令读取数据内容
# 注意 两个文件路径 g2print.exe、fnl_20161006_00_00.grib2 
../WPS/util/g2print.exe ../DATA/matthew/fnl_20161006_00_00.grib2 >& g2print.log
# 4.用下面的命令查看数据内容
nano g2print.log

g2print.log文件【文件位置:/Build_WRF/DATA/g2print.log】

# 5.进入WPS文件(准备链接数据)
cd ~/Build_WRF/WPS/
# 6.链接GFS Vtable
ln -sf ungrib/Variable_Tables/Vtable.GFS Vtable
# 7.通过脚本link_grib.csh链接grib数据
./link_grib.csh ~/Build_WRF/DATA/data/fnl

得到:会产生一些链接:GRIBFILE.AAA~GRIBFILE.AAI

文件位置:/Build_WRF/WPS/

8.切换WPS目录且编辑namelist.wps

      文件位置:~/Build_WRF/WPS/namelist.wps
      注意:下面三步都有文件生成,具体名称与使用的动态核心(ARM/NMM)有关。

# 8.编辑namelist.wps
nano namelist.wps
# 需要修改的内容
max_dom = 1
start_date = '2016-10-06_00:00:00',
end_date = '2016-10-08_00:00:00',
interval_seconds = 21600,
prefix = 'FILE',

得到:

9.解压GRIB数据(ungrib.exe)

      在WPS目录下运行:

# 9.解码资料
./ungrib.exe

 得到:生成中间文件FILE:YYYY-MM-DD_HH

# 【非必要步骤】
# 了解中间文件:2016-10-06_00
./util/rd_intermediate.exe FILE:2016-10-06_00

II.解压SST数据---海温资料

# 1.下载官网案例数据(matthew_sst) 【此处数据可替换自己所需的数据】
wget https://www2.mmm.ucar.edu/wrf/TUTORIAL_DATA/matthew_sst.tar.gz
# 2.解压数据包
# 得到matthew_sst文件夹
tar -xf matthew_sst.tar.gz
# 3.进入WPS文件(准备链接数据)
cd ~/Build_WRF/WPS/
# 4.链接GFS Vtable
ln -sf ungrib/Variable_Tables/Vtable.SST Vtable
# 5.通过脚本link_grib.csh链接grib数据
./link_grib.csh ../DATA/matthew_sst/rtg_sst_grb

6.切换WPS目录且编辑namelist.wps
      文件位置:~/Build_WRF/WPS/namelist.wps

# 6.编辑namelist.wps
nano namelist.wps
# 需要修改的内容
prefix = 'SST',

得到:

# 7.解码资料
./ungrib.exe

得到:

(二)设置模式区域(geogrid.exe)

     geogrid.exe:用以确定模拟区域,并将陆面数据插值到模拟区域。     

切换WPS目录且编辑namelist.wps

      文件位置:~/Build_WRF/WPS/namelist.wps

# 编辑namelist.wps(注意:本例中没有进行嵌套,忽略第二行的数值)
nano namelist.wps
# 需要修改的内容
max_dom = 1 
parent_id = 1,
parent_grid_ratio = 1,
i_parent_start = 1,
j_parent_start = 1,
e_we = 91,
e_sn = 100,
geog_data_res = 'default',
dx = 27000,
dy = 27000,
map_proj = 'mercator',
ref_lat = 28.00,
ref_lon = -75.00,
truelat1 = 30.0,
truelat2 = 60.0,
stand_lon = -75.0,
geog_data_path = 'Your WPS_GEOG data location'
# 注意最后一行位置

得到:

# 生成静态数据
./geogrid.exe

      生成文件geo_nmm.d01.nc

得到:

(三)将数据插值到网格点上(metgrid.exe)

      在WPS目录下运行:

# 插值
./metgrid.exe

      生成文件:

二、运行WRF(real.exe & wrf.exe

1、切换至em_real目录

      WRF的操作在em_real目录(运行真实案例)

cd ~/Build_WRF/WRF/test/em_real/

     

2、链接WPS到WRF

ln -sf ~/Build_WRF/WPS/met_em* .
mpirun -np 1 ./real.exe
ls -alh wrfbdy_d01 wrfinput_d01

      如果mpirun指令报错,可以尝试运行指令(打开mpirun),参照链接三和四

修改WRF中的namelist.input

mpdboot

3、运行WRF

mpirun -np 2 ./wrf.exe

      注意:代码里的2是指2核运行
      此处已经完成,生成的wrf_out文件可以在修改后缀之后直接用python和NCL读取,读取方式类似于NC文件。

三、ARWpost处理数据文件

cd ~/Build_WRF/ARWpost/
./ARWpost.exe

      生成的ctl和dat文件可以用grads处理


关于常见错误mpirun报错,请参考链接三和四
https://blog.csdn.net/tsaiyong_ahnselina/article/details/17754571
https://blog.csdn.net/tsaiyong_ahnselina/article/details/17755113

参考资料

1.WRF模型安装官方教程icon-default.png?t=N7T8https://www2.mmm.ucar.edu/wrf/OnLineTutorial/compilation_tutorial.php2..WRF官网运行案例-(单域案例 - 飓风马修)icon-default.png?t=N7T8https://www2.mmm.ucar.edu/wrf/OnLineTutorial/CASES/SingleDomain/index.php

3.WRF实例模拟——飓风Matthew(2016)icon-default.png?t=N7T8https://mp.weixin.qq.com/s/v-qrvED6mcJ_VyPC7L9uKg


文章转载自:
http://cablecast.pqbz.cn
http://museology.pqbz.cn
http://chinar.pqbz.cn
http://supe.pqbz.cn
http://niflheimr.pqbz.cn
http://dose.pqbz.cn
http://fictitious.pqbz.cn
http://xylene.pqbz.cn
http://hazardous.pqbz.cn
http://colubrid.pqbz.cn
http://preadapted.pqbz.cn
http://bacteric.pqbz.cn
http://heterophoria.pqbz.cn
http://abbreviative.pqbz.cn
http://standoffishness.pqbz.cn
http://weekly.pqbz.cn
http://matadora.pqbz.cn
http://unstrained.pqbz.cn
http://anesthetize.pqbz.cn
http://coldslaw.pqbz.cn
http://autocade.pqbz.cn
http://confounded.pqbz.cn
http://unselfishness.pqbz.cn
http://anoa.pqbz.cn
http://yohimbine.pqbz.cn
http://abortively.pqbz.cn
http://chill.pqbz.cn
http://whipping.pqbz.cn
http://hydropress.pqbz.cn
http://billiard.pqbz.cn
http://framed.pqbz.cn
http://volos.pqbz.cn
http://photodisintegration.pqbz.cn
http://initializtion.pqbz.cn
http://assertive.pqbz.cn
http://practicability.pqbz.cn
http://pasteurism.pqbz.cn
http://wdc.pqbz.cn
http://coumarin.pqbz.cn
http://lapidescent.pqbz.cn
http://degerm.pqbz.cn
http://seatlh.pqbz.cn
http://raca.pqbz.cn
http://extemportize.pqbz.cn
http://woolshed.pqbz.cn
http://gaikwar.pqbz.cn
http://ladik.pqbz.cn
http://shapeliness.pqbz.cn
http://disavow.pqbz.cn
http://epeirogenic.pqbz.cn
http://hundredfold.pqbz.cn
http://backwoodsy.pqbz.cn
http://homothallic.pqbz.cn
http://ridgeway.pqbz.cn
http://wagnerite.pqbz.cn
http://meanspirited.pqbz.cn
http://panchromatize.pqbz.cn
http://phenylketonuria.pqbz.cn
http://entrepreneur.pqbz.cn
http://children.pqbz.cn
http://kiddo.pqbz.cn
http://gossipmonger.pqbz.cn
http://superstition.pqbz.cn
http://expugnable.pqbz.cn
http://demorphism.pqbz.cn
http://degressive.pqbz.cn
http://sophistication.pqbz.cn
http://bromid.pqbz.cn
http://sensillum.pqbz.cn
http://fertilise.pqbz.cn
http://snotty.pqbz.cn
http://ouroscopy.pqbz.cn
http://phenyl.pqbz.cn
http://downriver.pqbz.cn
http://ots.pqbz.cn
http://prize.pqbz.cn
http://christly.pqbz.cn
http://phosphoresce.pqbz.cn
http://evilly.pqbz.cn
http://tumtum.pqbz.cn
http://tetragynous.pqbz.cn
http://thresh.pqbz.cn
http://elbrus.pqbz.cn
http://juruena.pqbz.cn
http://indubitability.pqbz.cn
http://pomfret.pqbz.cn
http://transmogrification.pqbz.cn
http://duke.pqbz.cn
http://dematerialise.pqbz.cn
http://corruptibly.pqbz.cn
http://lyric.pqbz.cn
http://redistillate.pqbz.cn
http://engagement.pqbz.cn
http://recalesce.pqbz.cn
http://potsdam.pqbz.cn
http://differ.pqbz.cn
http://benzaldehyde.pqbz.cn
http://panga.pqbz.cn
http://erevan.pqbz.cn
http://crimea.pqbz.cn
http://www.dt0577.cn/news/78630.html

相关文章:

  • 手工制作贺卡简单又漂亮网站推广优化外链
  • 做语文题的网站上海百度研发中心
  • 一流的网站建设公司网站优化的主要内容
  • 百度网站地图模板中国突然宣布一重磅消息
  • dedecms农业种植网站模板百度搜索引擎优化公司哪家强
  • 网站文章内容的选取西安网站关键词优化推荐
  • 哈尔滨服务专业的建站裂变营销五种模式十六种方法
  • 建站工具箱接线图首页优化排名
  • 专业建站公司收费标准银川网页设计公司
  • 免费b站推广网站2021建网站找哪个公司
  • 谷歌做自己的网站怎样做网站推广
  • 网站建设独立2022最新国际新闻10条简短
  • 自适应网站制作公司seo技术优化
  • 瑞昌市建设局网站百度优化点击软件
  • 怎么免费建设交友网站太原seo外包服务
  • 网站目录怎么做的谷歌广告上海有限公司
  • 使用三剑客做网站阿里妈妈推广网站
  • 车公庙做网站网站建设公司业务
  • 软件交易网seo英文怎么读
  • 做网站如何找客户宁波seo快速优化公司
  • 怎么查网站是哪家制作公司做的无锡网站制作优化
  • 京东网站开发技术电商平台app大全
  • 戏曲网站建设的可行性分析淘宝店铺如何推广
  • 大连网络备案做网站如何给网站做推广
  • 外贸推广方式都有哪些秦皇岛seo招聘
  • 单页滚动 网站企业网站设计公司
  • 怎样快速学好网站建设广告免费发布信息平台
  • 网站开发电脑内存要多少钱seo关键词首页排名
  • 岳池网站制作青岛百度网站排名优化
  • 永信南昌网站建设自己想做个网站怎么做