« UsingVehicleClass » : différence entre les versions

De Patrius
Aller à la navigation Aller à la recherche
Aucun résumé des modifications
Aucun résumé des modifications
 
Ligne 13 : Ligne 13 :
         final double lref = 1.;
         final double lref = 1.;
         veh.setMainShape(new Sphere(Vector3D.ZERO, lref));
         veh.setMainShape(new Sphere(Vector3D.ZERO, lref));
//             
             
         // Getting the corresponding assembly
         // Getting the corresponding assembly
         final Assembly assembly = veh.createAssembly(FramesFactory.getCIRF());
         final Assembly assembly = veh.createAssembly(FramesFactory.getCIRF());

Dernière version du 21 décembre 2018 à 10:04

public class UsingVehicleClass {

    public static void main(String[] args) throws PatriusException {
        
        Vehicle veh = new Vehicle();
        
        // Dry mass
        final double dryMass = 1000.;
        veh.setDryMass(dryMass);
        
        // Shape : A vehicle object must have a main shape !
        final double lref = 1.;
        veh.setMainShape(new Sphere(Vector3D.ZERO, lref));
              
        // Getting the corresponding assembly
        final Assembly assembly = veh.createAssembly(FramesFactory.getCIRF());
        
        // Getting the corresponding mass model (useful for propagation, maneuvres, ...)
        final MassProvider mm = new MassModel(assembly);
      
        System.out.println("Name of the main part: " + assembly.getMainPart().getName());        
        System.out.println("Total mass: " + mm.getTotalMass());
        
    }

}