Scheduled Downtime
On Friday 21 April 2023 @ 5pm MT, this website will be down for maintenance and expected to return online the morning of 24 April 2023 at the latest

RIP4 trajectories

This post was from a previous version of the WRF&MPAS-A Support Forum. New replies have been disabled and if you have follow up questions related to this post, then please start a new thread from the forum home page.

Rumekintun

New member
Hello all,

I am trying to calculate trajectories with rip4, from outputs of the WRF ARW.

so, i do first:

./ripdp_wrfarw -n wrfarw.in colla basic wrfout_dom3

where:

#more wrfarw.in
&userin
ptimes=0,-1440,6,ptimeunits='m',tacc=90.,iexpandedout=1
/

then I try to compute trajectories with:

./rip -f colla wrfarw2.in

where wrfarw2.in

&userin
ptimes=0,-1440,6,ptimeunits='m',tacc=90.,itrajcalc=1,iexpandedout=1
/
&trajcalc
rtim=0,ctim=24,dtfile=360.,dttraj=120.,vctraj='z',
xjtraj=37,
yitraj=32,
zktraj=0.015,
ihydrometeor=1
/

But there is an error message:
# ./rip -f colla wrfarw2.in
At line 249 of file rip.f (unit = 7, file = 'wrfarw2.in')
Fortran runtime error: Cannot match namelist object name iexpandedout

Error termination. Backtrace:
#0 0x14f2934711aa
...

I've been trying to find information about using rip4 to calculate trajectories with examples, but I still can't quite understand how it works ...
What am I doing wrong ?

many thanks in advance
Rodrigo
 
Hi Rodrigo,
I don't believe you need the variable "iexpandedout" in the namelist. According to the RIP User's Guide, this is only relevant for MM5V3 model output. I assume you're using WRF?

I'm attaching a couple of scripts I used for doing some trajectory plots. It's been a few years since I've done it, but maybe these will help a bit. If I remember correctly,

1) Run ripdp
Code:
./ripdp_wrfarw  RIPDP/myCase  all  path_to_your_wrfout_files/wrfout_d01_*

2) Run RIP to calculate the trajectories
Code:
./rip  -f  RIPDP/myCase  horiz_traj.in
This will output files called "horiz_traj.diag" and "horiz_traj.traj."

3) Run RIP again to plot the trajectories (using the "horiz_plot.in" script)
Code:
./rip  -f  RIPDP/myCase  horiz_plot.in

If you wanted to plot a vertical trajectory, you can use the "vert_plot.in" script to run RIP again. In this script, you will modify the "crsb" field to indicate the levels. For e.g., in my script, I have it set to "crsb=550,139." This starts at level 550 and goes backward to level 139. And the horizontal is "crsa=150,213," where 150 and 213 are grid points.

Obviously you'll need to just use these scripts as templates and make all the modifications you need for your case.
 

Attachments

  • horiz_traj.in
    815 bytes · Views: 23
  • horiz_plot.in
    1.6 KB · Views: 22
  • vert_plot.in
    1.8 KB · Views: 21
Top