UsingVehicleClass 4.4
Aller à la navigation
Aller à la recherche
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());
}
}