Changeset 2920


Ignore:
Timestamp:
May 18, 2006, 6:48:31 PM (19 years ago)
Author:
sexton
Message:

updates for reports

Location:
production
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • production/onslow_2006/plot_data_extent.py

    r2914 r2920  
    66from utilities.polygon import inside_polygon
    77import project
    8 from pyvolution.util import plot_polygons
     8from utilities.polygon import plot_polygons, poly_xy
    99
    1010datadir = project.datadir
     
    1212
    1313plot_data = True
    14 plot_with_poly = False
     14plot_with_poly = True
    1515
    1616if plot_data == True:
     
    2626    if plot_with_poly == True:
    2727        figname = 'onslow_data_poly'
     28        x1, y1 = poly_xy(project.polyAll)
     29        x2, y2 = poly_xy(project.poly_onslow)
     30        x3, y3 = poly_xy(project.poly_coast)
     31        x4, y4 = poly_xy(project.poly_region)
    2832        figure(1)
    2933        plot(pts1[:,0],pts1[:,1],'g.',
    30              pts2[:,0],pts2[:,1],'b.')
    31         vec = plot_polygons(project.polyAll,
    32                             [project.poly_onslow, project.poly_coast, project.poly_region],
    33                             figname,
    34                             verbose = True)
    35         axis([])
     34             pts2[:,0],pts2[:,1],'b.',
     35             x1,y1,'r-',x2,y2,'r-',x3,y3,'r-',x4,y4,'r-')
     36        xlabel('Eastings')
     37        ylabel('Northings')
    3638        savefig(figname)
    3739    else:
     
    3941        plot(pts1[:,0],pts1[:,1],'g.',
    4042             pts2[:,0],pts2[:,1],'b.')
    41         xlabel('x')
    42         ylabel('y')
     43        xlabel('Eastings')
     44        ylabel('Northings')
    4345        savefig('onslow_data_extent')
    4446else:
     
    4648    figure(3)
    4749    figname = 'onslow_polys'
    48     vec = plot_polygons(project.polyAll,
    49                         [project.poly_onslow, project.poly_coast, project.poly_region],
     50    vec = plot_polygons([project.polyAll,
     51                        project.poly_onslow, project.poly_coast, project.poly_region],
    5052                        figname,
    5153                        verbose = True)
  • production/onslow_2006/results.tex

    r2901 r2920  
    33computational time and desired resolution in areas of interest,
    44particularly in the interface between the on and offshore. The
    5 following figures illustrate the study extent for the
    6 scenario and the resulting computational mesh, highlighting areas
    7 of refinement around areas of particular interest.
     5following figure illustrates the data extent for the
     6scenario and where further mesh refinement has been made. The choice
     7of the refinement is based around the important inter-tidal zones and
     8other important features such as islands and rivers.
     9The resultant computational mesh is then seen in \ref{fig.mesh_onslow}.
    810
    911\begin{figure}[hbt]
    1012
    11   %\centerline{ \includegraphics[width=75mm, height=75mm]{.png}}
     13  \centerline{ \includegraphics[width=75mm, height=75mm]{onslow_data_poly.png}}
    1214
    13   \caption{Study area for Onslow scenario}
     15  \caption{Study area for Onslow scenario highlighting areas of increased refinement.}
    1416  \label{fig:onslow_area}
    1517\end{figure}
  • production/pt_hedland_2006/data.tex

    r2900 r2920  
    5656
    5757  \caption{Data extent for Pt Hedland scenario. Offshore data shown in blue and onshore data
    58 in green. The bounding polygon used for the simulation is shown in red.}
     58in green.}
    5959  \label{fig:pt_hedland_data_area}
    6060\end{figure}
  • production/pt_hedland_2006/results.tex

    r2838 r2920  
    22cover the available data. The resolution is chosen to balance
    33computational time and desired resolution in areas of interest,
    4 particularly in the interface between the on and offshore. The
    5 following series of figures illustrate the study extent for the
    6 scenario and the resulting computational mesh, highlighting areas
    7 of refinement around areas of particular interest.
     4particularly in the interface between the on and offshore. he
     5following figure illustrates the data extent for the
     6scenario and where further mesh refinement has been made. The choice
     7of the refinement is based around the important inter-tidal zones and
     8other important features such as islands and rivers.
     9The resultant computational mesh is then seen in \ref{fig.mesh_onslow}.
    810
    911
    1012\begin{figure}[hbt]
    1113
    12   %\centerline{ \includegraphics[width=75mm, height=75mm]{figures/.eps}}
     14  \centerline{ \includegraphics[width=75mm, height=75mm]{pt_hedland_data_poly.png}}
    1315
    1416  \caption{Study area for Pt Hedland scenario}
     
    1921\begin{figure}[hbt]
    2022
    21   %\centerline{ \includegraphics[width=75mm, height=75mm]{figures/.eps}}
     23  %\centerline{ \includegraphics[width=75mm, height=75mm]{}}
    2224
    2325  \caption{Computational mesh for Pt Hedland study area}
Note: See TracChangeset for help on using the changeset viewer.