PPdisk simdata (CASA 3.3): Difference between revisions

From CASA Guides
Jump to navigationJump to search
No edit summary
No edit summary
 
(19 intermediate revisions by the same user not shown)
Line 9: Line 9:
*[ftp://ftp.cv.nrao.edu/NRAO-staff/rindebet/input50pc_672GHz.fits This fits file] is a model of a protoplanetary disk from S. Wolf (If you use it for anything more than learning CASA, please cite [http://adsabs.harvard.edu/abs/2005ApJ...619.1114W Wolf & D'Angelo 2005]).
*[ftp://ftp.cv.nrao.edu/NRAO-staff/rindebet/input50pc_672GHz.fits This fits file] is a model of a protoplanetary disk from S. Wolf (If you use it for anything more than learning CASA, please cite [http://adsabs.harvard.edu/abs/2005ApJ...619.1114W Wolf & D'Angelo 2005]).


*Simdata version for CASA 3.2
*sim_observe and sim_analyze version for CASA 3.3
__NOTOC__
__NOTOC__
<br>
<br>
====Explanation of the script====
====Explanation of the script====


=====Set simdata as current task and reset all parameters=====
=====Set sim_observe as current task and reset all parameters=====
<source lang="python">
<source lang="python">
# Setting everything in simdata to original defaults
# Setting everything in simdata to original defaults
default("simdata")
default("sim_observe")
</source>   
</source>   
=====Specify sky model image=====
<source lang="python">
# Prior image to use in clean
# Make sure you are running CASA in the same directory as this file
modelimage        =  "input50pc_672GHz.fits"
</source> 
=====Image coordinate system can be verified=====
=====Image coordinate system can be verified=====
<source lang="python">
<source lang="python">
Line 31: Line 25:
</source>   
</source>   
=====Image center can be identified=====
=====Image center can be identified=====
  # ia.open("input50pc_672GHz.fits")
<source lang="python">
  # ia.shape()
# These are tools found in the CASA toolkit
  # [257L, 257L, 1L, 1L]
# They are very useful, but the interface is not as straightforward as the tasks
  # ia.toworld([128.5,128.5])
# You can find the tool reference manual here: http://casa.nrao.edu/docs/CasaRef/CasaRef.html
  # {'numeric': array([  4.71239120e+00,  -4.01423802e-01,  1.00000000e+00, 6.72000001e+11])}
# The following command is used to open an image (this is part of the image analysis toolkit)
  # qa.formxxx("4.71239120rad",format='hms',prec=5)
# Whenever data are being viewed/manipulated by tools, what is being operated on needs to be explicitly opened
  # '18:00:00.03052'
# and closed (i.e. an image, a table, etc.)
  # qa.formxxx("-0.401423802rad",format='dms',prec=5)
ia.open("input50pc_672GHz.fits")
  # '-022.59.59.602743'
# Out[9]: True
  # ia.done()
#
# Reports the length of each axis in the opened image
ia.shape()
# Out[11]: [257L, 257L, 1L, 1L]
#
# This command converts from pixel (our source file) to world coordinates (something usable by simdata)
ia.toworld([128.5,128.5])
#  Out[12]:
#{'numeric': array([  4.71239120e+00,  -4.01423802e-01,  1.00000000e+00,
#        6.72000001e+11])}
#
# Formats the coordinate just converted into hms
qa.formxxx("4.71239120rad",format='hms',prec=5)
# Out[13]: '18:00:00.03052'
#
# Formats one of the other coordinates into dms
qa.formxxx("-0.401423802rad",format='dms',prec=5)
# Out[14]: '-022.59.59.602743'
#
# Final housekeeping by closing the image tool
# The image tool will now be detached from the image
ia.close()
</source>
 
=====Brightness scale can be viewed with 'imstat' task=====
=====Brightness scale can be viewed with 'imstat' task=====
<source lang="python">
<source lang="python">
Line 68: Line 85:
=====The default pointingspacing is fine: we'll only fit one pointing in the small mapsize the default calculation maptype hexagonal is ok too since only one will fit anyway.=====
=====The default pointingspacing is fine: we'll only fit one pointing in the small mapsize the default calculation maptype hexagonal is ok too since only one will fit anyway.=====


=====We do want to calculate visibilities in a measurement set: let's do a 20 min snapshot observation using out20 configuration:=====
=====We do want to calculate visibilities in a measurement set: let's do a 20 min snapshot observation using the "out20" ALMA antenna configuration:=====
<source lang="python">
<source lang="python">
observe            =  True
observe            =  True
Line 74: Line 91:
</source>
</source>


=====Use appropriate antenna configurations based on desired angular resolution (configuration 20 is the largest "compact" configuration)=====
=====Use appropriate antenna configurations based on desired angular resolution (configuration 20 - alma.out20.cfg in this case - is the largest "compact" configuration)=====
<source lang="python">
<source lang="python">
# It might be helpful to confirm the alma.out20.cfg file exists in the path defined below
# It might be helpful to confirm the alma.out20.cfg file exists in the path defined below
Line 80: Line 97:
repodir=os.getenv("CASAPATH").split(' ')[0]
repodir=os.getenv("CASAPATH").split(' ')[0]
antennalist        =  repodir+"/data/alma/simmos/alma.out20.cfg"
antennalist        =  repodir+"/data/alma/simmos/alma.out20.cfg"
sim_observe()
</source>
</source>


=====Deconvolve the visibilities back into an image=====
===== Deconvolve the visibilities back into an image=====
<source lang="python">
<source lang="python">
default ("sim_analyze")
project            =  "psim2"
image              =  True
image              =  True
vis                =  "$project.ms"
# Prior image to use in clean
modelimage        =  "input50pc_672GHz.fits"
vis                =  project+".alma.out20.ms"
imsize            =  [192, 192]   
imsize            =  [192, 192]   
</source>
</source>
Line 103: Line 125:
=====And see the array but not the UV coverage:=====
=====And see the array but not the UV coverage:=====
<source lang="python">
<source lang="python">
showarray          =  True
showuv            =  False
showuv            False 
showresidual      =  True
showconvolved      True
</source>
</source>


Line 116: Line 139:
===Run simdata===
===Run simdata===
<source lang="python">
<source lang="python">
# This commands CASA to execute simdata
# This commands CASA to execute sim_analyze
simdata()
sim_analyze()
</source>
</source>
<br>
<br>
Line 125: Line 148:
{| style="border:1px solid #3366FF; " cellspacing=2
{| style="border:1px solid #3366FF; " cellspacing=2
|Input:<br> [[File:Psim2.skymodel.png|300px]]
|Input:<br> [[File:Psim2.skymodel.png|300px]]
|Predict:<br> [[File:Psim2.predict.png|300px]]
|Predict:<br> [[File:Psim2.alma.out20.observe.png|300px]]
|-
|-
|Image:<br> [[File:Psim2.image.png|300px]]
|Image:<br> [[File:Psim2.alma.out20.image.png|300px]]
|Analyze:<br> [[File:Psim2.analysis.png|300px]]
|Analyze:<br> [[File:Psim2.analysis.png|300px]]
|}
|}


{{Simulations Intro}}
{{Simulations Intro}}
{{Checked 3.3.0}}

Latest revision as of 11:17, 22 November 2011

Simulating Observations in CASA

Old version: PPdisk simdata (CASA 3.2).

To create a script of the Python code on this page see Extracting scripts from these tutorials.

Protoplanetary disk

  • sim_observe and sim_analyze version for CASA 3.3


Explanation of the script

Set sim_observe as current task and reset all parameters
# Setting everything in simdata to original defaults
default("sim_observe")
Image coordinate system can be verified
# This reports image header parameters in the Log Messages window
imhead("input50pc_672GHz.fits")
Image center can be identified
# These are tools found in the CASA toolkit
# They are very useful, but the interface is not as straightforward as the tasks
# You can find the tool reference manual here: http://casa.nrao.edu/docs/CasaRef/CasaRef.html
# The following command is used to open an image (this is part of the image analysis toolkit)
# Whenever data are being viewed/manipulated by tools, what is being operated on needs to be explicitly opened
# and closed (i.e. an image, a table, etc.)
ia.open("input50pc_672GHz.fits")
#  Out[9]: True
#
# Reports the length of each axis in the opened image
ia.shape()
#  Out[11]: [257L, 257L, 1L, 1L]
#
# This command converts from pixel (our source file) to world coordinates (something usable by simdata)
ia.toworld([128.5,128.5])
#  Out[12]:
#{'numeric': array([  4.71239120e+00,  -4.01423802e-01,   1.00000000e+00,
#         6.72000001e+11])}
#
# Formats the coordinate just converted into hms
qa.formxxx("4.71239120rad",format='hms',prec=5)
#  Out[13]: '18:00:00.03052'
#
# Formats one of the other coordinates into dms
qa.formxxx("-0.401423802rad",format='dms',prec=5)
#  Out[14]: '-022.59.59.602743'
#
# Final housekeeping by closing the image tool
# The image tool will now be detached from the image
ia.close()
Brightness scale can be viewed with 'imstat' task
# Default parameters are adequate for this
imstat("input50pc_672GHz.fits")
# ...
#  'max': array([  6.52469971e-05]),
# ...
# that's 0.0652 mJy/pixel.
Let's call our project psim2
# This defines the root prefix for any output files from simdata
project            =  "psim2"
We'll leave the sky model the way it is: simdata will create psim2.skymodel CASA image since this model is a fits file, and most but not all of CASA routines can operate directly on fits
skymodel           =  "input50pc_672GHz.fits"
We need to decide where to point the telescope. The image is 2/3 arcsec in size, so we only need one pointing. We could put that in a text file ourself, or let simdata create the ascii pointing file for us.
setpointings       =  True
direction          =  "J2000 18h00m00.031s -22d59m59.6s"
mapsize            =  "0.76arcsec"
The default pointingspacing is fine: we'll only fit one pointing in the small mapsize the default calculation maptype hexagonal is ok too since only one will fit anyway.
We do want to calculate visibilities in a measurement set: let's do a 20 min snapshot observation using the "out20" ALMA antenna configuration:
observe            =  True
totaltime          =  "1200s"
Use appropriate antenna configurations based on desired angular resolution (configuration 20 - alma.out20.cfg in this case - is the largest "compact" configuration)
# It might be helpful to confirm the alma.out20.cfg file exists in the path defined below
# If you have a problem, this might be the first thing to check, if you haven't already
repodir=os.getenv("CASAPATH").split(' ')[0]
antennalist        =  repodir+"/data/alma/simmos/alma.out20.cfg"
sim_observe()
Deconvolve the visibilities back into an image
default ("sim_analyze")
project            =  "psim2"
image              =  True
# Prior image to use in clean
modelimage         =  "input50pc_672GHz.fits"
vis                =  project+".alma.out20.ms"
imsize             =  [192, 192]
Specify number of iteration of cleaning task with proper threshold and weighting
niter              =  10000
threshold          =  "1e-7Jy"
weighting          =  "natural"
We'd like to calculate a difference and fidelity image, and see some diagnostics:
analyze            =  True
And see the array but not the UV coverage:
showuv             =  False
showresidual       =  True  
showconvolved      =  True
Plot both to the screen and the png files with lots of messages:
graphics           =  "both"
verbose            =  True
overwrite = True

Run simdata

# This commands CASA to execute sim_analyze
sim_analyze()


  • Output results:


Input:
Psim2.skymodel.png
Predict:
Psim2.alma.out20.observe.png
Image:
Psim2.alma.out20.image.png
Analyze:
Psim2.analysis.png

Simulating Observations in CASA

Last checked on CASA Version 3.3.0.