Package gaiasimu.universe.source

Examples of gaiasimu.universe.source.AstrometricParam


   * @param muAlphaStar  True arc right ascension proper motion [mas/yr]
   * @param muDelta    Declination proper motion [mas/yr]
   * @param radVel    Radial velocity [km/s]
   */
  public void setReferenceAstrometry(double alpha, double delta, double parallax, double muAlphaStar, double muDelta, double radVel) {
    this.astroRef = new StellarAstrometry ( new AstrometricParam ( alpha, delta, parallax, muAlphaStar, muDelta, radVel ) );
  }
View Full Code Here


   * @param muRa    Proper motion RA  [mas/yr]
   * @param muDec    Proper motion DEC [mas/yr]
   * @param vRad    Radial velocity [km/s]
   */
  public void setAstrometry ( double ra, double dec, double parallax, double muRa, double muDec, double vRad ) {
    setAstrometry ( new StellarAstrometry ( new AstrometricParam ( ra, dec, parallax, muRa, muDec, vRad ) ) );
  }
View Full Code Here

    return star;
  }


  public void setRefAstro ( double ra, double dec, double parallax, double muRa, double muDec, double vRad ) {
    setRefAstro ( new StellarAstrometry ( new AstrometricParam ( ra, dec, parallax, muRa, muDec, vRad ) ) );
  }
View Full Code Here

   *
   * @return  The stellar astrometry
   */
  public StellarAstrometry createAstrometry() {
   
    return new StellarAstrometry ( new AstrometricParam ( alpha, delta, parallax, muAlphaStar, muDelta, radVel ) );
   
  }
View Full Code Here

    // Generate photometry
    Photometry photometry = new Photometry(magMv, distance, vMinusI, absV);
   
    // Generate astrometry
    StellarAstrometry stellarAstrometry = new StellarAstrometry(
        new AstrometricParam(ra, dec, parallax, muRa, muDec, vRad));
   
    // Generate physics.
    // Basic constructor for StarSystem
    StarPhysicalParameters starPhysicalParameters =
//      new StarPhysicalParameters( teff, feH, logg, mass, spectralType, magBol, radius, pop);
View Full Code Here

    // Generate photometry
    Photometry photometry = new Photometry(magMv, distance, vMinusI, absV);
   
    // Generate astrometry
    StellarAstrometry stellarAstrometry = new StellarAstrometry(
        new AstrometricParam(ra, dec, parallax, muRa, muDec, vRad));
   
    // Generate physics.
    // Basic constructor for StarSystem
    StarPhysicalParameters starPhysicalParameters =
//      new StarPhysicalParameters( teff, feH, logg, mass, spectralType, magBol, radius, pop);
View Full Code Here

    // Generate photometry
    Photometry photometry = new Photometry(magMv, distance, vMinusI, absV);
   
    // Generate astrometry
    StellarAstrometry stellarAstrometry = new StellarAstrometry(
        new AstrometricParam(ra, dec, parallax, muRa, muDec, vRad));
   
    // Generate physics.
    // Basic constructor for StarSystem
    StarPhysicalParameters starPhysicalParameters =
//      new StarPhysicalParameters( teff, feH, logg, mass, spectralType, magBol, radius, pop);
View Full Code Here

    // Generate photometry
    Photometry photometry = new Photometry(magMv, distance, vMinusI, absV);
   
    // Generate astrometry
    StellarAstrometry stellarAstrometry = new StellarAstrometry(
        new AstrometricParam(ra, dec, parallax, muRa, muDec, vRad));
   
    // Generate physics.
    // Basic constructor for StarSystem
    StarPhysicalParameters starPhysicalParameters =
//      new StarPhysicalParameters( teff, feH, logg, mass, spectralType, magBol, radius, pop);
View Full Code Here

TOP

Related Classes of gaiasimu.universe.source.AstrometricParam

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.