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

Temporally punctual anomalous temperatures with different configurations (WRF V3.6)

Arty

Member
Hello,

I've made several WRF simulations based on different configurations (Topography ; Convection On/Off ; Physics options ; Vertical levels).

I started to analyze Rain, Wind and GHI (short-wave solar irradiation) 2D-fields and everything looked pretty OK ; but then I looked at temperatures (T2 ; and then T2MEAN with same result) and noticed several grid cells showing temporally punctual anomalous temperature, way lower than expected for the region.

I'm working on Tahiti/Moorea islands in tropical South Pacific. Below is a snapshot of an analysis based on one configuration displaying the location of grid cells showing anomalous temperature values for one month. Except for grid cells over mountainous regions (which I excluded setting threshold to 14°C or less), we do not expect such low temperatures on Tahiti, at any period of the year. Even less such brutal perturbation, i.e. from average 20°C to 12°C or less for one or two hour before temperature raises back up to normal.

1710463006990.png

I attached some graphs that show some more details : usually, anomalous temperatures are found around noon (UTC-10 ; time has been converted for post-processing in all the attached graphs). The domain (d02) size is 120x120 at a 2.333 km resolution, nested in a 120x120 domain (d01) at 7 km resolution? Forcing come from previous WRF outputs processed via NDOWN. The islands are voluntarily at the center of both domain to make room for the model to run properly.

The graphs attached show data for different configuration (name is title of each subplot). To help read these figures, please note :

1) The first row is "convection activated" ; the second row is "convection deactivated" (for domain d02)
2) The first 4 columns are topography testings (config. name refers to interpolation method and smoothing pass : 0 or 1) - all on 65 vertical levels
3) Columns 5 and 6 have the same topography (from original WPS data), only the number of vertical levels differ (33 or 65)
4) All 6 first columns have same physics options
5) Last column show a different physics configuration (based on Kain-Fritsh scheme), also en 65 vertical levels

It doesn't seem to be linked to some spin-up time as anomalous temperature can be observed anytime in the simulations. Also, as already stated : rain, wind and GHI fields look OK (compared to ERA5, IMERG and/or in-situ measurements). For now, I don't have much idea what would be causing such brutal temperature drops, particularly near shore (all defective points are near coastline, for all configurations). I wouldn't be surprise this plays a role though I have no idea how it would.

I would gladly read your thoughts on this matter. Also, feel free to advise any further checks I should perform.
 

Attachments

  • Anomalous_Temp_5days.png
    Anomalous_Temp_5days.png
    2 MB · Views: 6
  • Anomalous_Temp_2years.png
    Anomalous_Temp_2years.png
    693.8 KB · Views: 5
  • Anomalous_Temp_1month.png
    Anomalous_Temp_1month.png
    2.5 MB · Views: 5
Last edited:
The problem originates in the SST inputs I created by interpolating previous wrfout* SST. It seems I've some work to do to properly smooth out the SST after interpolation. My bad, I should have looked more thoroughly at them before use.

Cold points are well explained by SST :

1710530564208.png


1710530529858.png
 
Last edited:
Hi,
Thank you so much for the update. I'm glad you have at least started to figure out the issue.
 
Hi,
Thank you so much for the update. I'm glad you have at least started to figure out the issue.
Thank you. It's important for me to document all potential problems that may arise and propose solutions if available.

While investigating the issue using Python, I created a small script that linearly interpolates SST values at a given latitude from SST(start_lon_idx) to SST(end_lon_idx). Please refer to the attached screenshots for an example (showing blank spaces where Mean SST < 27°C before interpolation, and the corrected values after interpolation between longitude boundaries for each latitude).

However, I'm still encountering difficulties in replicating this process using NCO : a discussion on that matter can be found here. Additionally, I am exploring a CDO solution but have yet to find one ; a post has been created as well on the dedicated forum.

Of course, any advice would be welcomed.
 

Attachments

  • Capture d’écran du 2024-03-15 14-09-08.png
    Capture d’écran du 2024-03-15 14-09-08.png
    80.1 KB · Views: 4
  • Capture d’écran du 2024-03-15 14-09-50.png
    Capture d’écran du 2024-03-15 14-09-50.png
    72.4 KB · Views: 5
The script below works fine :

Code:
# Define start and end indices for latitude and longitude
start_lat_idx=45
end_lat_idx=75

timesteps=$(ncdump -h $output_file | grep "Time = UNLIMITED" | awk '{print $6}' | tr -d '(')

# Loop over time steps
for time_idx in $(seq 0 $((timesteps - 1))); do
    printf "%s\n" $time_idx
   
    # Loop over latitude indices
    for lat_idx in $(seq $start_lat_idx $end_lat_idx); do

        ncap2 -h -O -s 'global@tmp=array(SST('${time_idx}','${lat_idx}',31),(SST('${time_idx}','${lat_idx}',80)-SST('${time_idx}','${lat_idx}',31))/50,$west_east); SST('${time_idx}','${lat_idx}',31:80)=global@tmp(0:49);' $output_file $output_file
    done

done
 
Last edited:
Top