Changes between Version 12 and Version 13 of CameraObjects


Ignore:
Timestamp:
11/15/14 16:24:27 (10 years ago)
Author:
madams
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • CameraObjects

    v12 v13  
    33
    44= Camera Objects =
     5
     6== Creating Camera Objects ==
    57Camera Objects can be created within the !ProblemModuleInit routine in problem.f90.  To create Cameras you first need to add two {{{USE}}} statements to your problem.f90
    68{{{
     
    2426
    2527 * Camera's are currently only used by the [ProjectObjects Projection Object]
     28
     29=== Camera Parameters ===
    2630
    2731Here is a full list of the various Camera parameters with the default values in brackets:
     
    198202- Ensure that your last camera has the same time as the final time of your simulation (see your global.data) so that you do not miss any cameras.
    199203- You may want to evenly split up the camera times. You could also write a script that spits out the CameraData attributes for you (see above).
     204- The code uses [http://en.wikipedia.org/wiki/Spline_interpolation Splite Interpolation] in order to create the path between cameras. Read more about Spline Interpolation with these [http://www.geos.ed.ac.uk/~yliu23/docs/lect_spline.pdf lecture notes] from the University of Edinburgh.
    200205- Add as many cameras & CameraDatas as you like, however make sure the number of CameraDatas equals the number you have set ncameras equal to.
    201206
     
    204209=== Problem for the reader ===
    205210
    206 Edit the problem.f90 and problem.data file to USE Winds, where a wind hits the clump with a velocity and make a fly-through visualization of this new simulation.
     211Edit the problem.f90 and problem.data file to {{{USE Winds}}}, where a wind hits the clump with a velocity and make a fly-through visualization of this new simulation.