Simulation of High Aspect Ratio planes in Python [SHARPy]¶
Welcome to SHARPy (Simulation of High Aspect Ratio aeroplanes in Python)!
SHARPy is an aeroelastic analysis package currently under development at the Department of Aeronautics, Imperial College London. It can be used for the structural, aerodynamic, aeroelastic and flight dynamics analysis of flexible aircraft, flying wings and wind turbines. Amongst other capabilities, it offers the following solutions to the user:
Static aerodynamic, structural and aeroelastic solutions
Finding trim conditions for aeroelastic configurations
Nonlinear, dynamic time domain simulations under a large number of conditions such as:
Prescribed trajectories.
Free flight.
Dynamic follower forces.
Control inputs in thrust, control surface deflection…
Arbitrary time-domain gusts, including non span-constant ones.
Full 3D turbulent fields.
Multibody dynamics with hinges, articulations and prescribed nodal motions.
Applicable to wind turbines.
Hinged aircraft.
Catapult assisted takeoffs.
Linear analysis
Linearisation around a nonlinear equilibrium.
Frequency response analysis.
Asymptotic stability analysis.
Model order reduction
Krylov-subspace reduction methods.
Balancing reduction methods.
The modular design of SHARPy allows to simulate complex aeroelastic cases involving very flexible aircraft. The structural solver supports very complex beam arrangements, while retaining geometrical nonlinearity. The UVLM solver features different wake modelling fidelities while supporting large lifting surface deformations in a native way. Detailed information on each of the solvers is presented in their respective documentation packages.
Contents¶
Capabilities¶
This is just the tip of the iceberg, possibilities are nearly endless and once you understand how SHARPy’s modular interface works, you will be capable of running very complex simulations.
Very flexible aircraft nonlinear aeroelasticity¶
The modular design of SHARPy allows to simulate complex aeroelastic cases involving very flexible aircraft. The structural solver supports very complex beam arrangements, while retaining geometrical nonlinearity. The UVLM solver features different wake modelling fidelities while supporting large lifting surface deformations in a native way.
Among the problems studied, a few interesting ones, in no particular order are:
Catapult take off of a very flexible aircraft analysis [Paper]. In this type of simulations, a PID controller was used in order to enforce displacements and velocities in a number of structural nodes (the clamping points). Then, several take off strategies were studied in order to analyse the influence of the structural stiffness in this kind of procedures. This case is a very good example of the type of problems where nonlinear aeroelasticity is essential.
Catapult Takeoff of Flexible Aircraft
Flight in full 3D atmospheric boundary layer (to be published). A very flexible aircraft is flown immersed in a turbulent boundary layer obtained from HPC LES simulations. The results are compared against simpler turbulence models such as von Karman and Kaimal. Intermittency and coherence features in the LES field are absent or less remarkable in the synthetic turbulence fields.
HALE Aircraft in a Turbulent Field
Lateral gust reponse of a realistic very flexible aircraft. For this problem (to be published), a realistic very flexible aircraft (University of Michigan X-HALE) model has been created in SHARPy and validated against their own aeroelastic solver for static and dynamic cases. A set of vertical and lateral gust responses have been simulated.
X-HALE
Wind turbine aeroelasticity¶
SHARPy is suitable to simulate wind turbine aeroelasticity.
On the structural side, it accounts for material anisotropy which is needed to characterize composite blades and for geometrically non-linear deformations observed in current blades due to the increasing length and flexibility. Both rigid and flexible simulations can be performed and the structural modes can be computed accounting for rotational effects (Campbell diagrams). The rotor-tower interaction is modelled through a multibody approach based on the theory of Lagrange multipliers. Finally, the tower base can be fixed or subjected to prescribed linear and angular velocities.
On the aerodynamic side, the use of potential flow theory allows the characterization of flow unsteadiness at a reasonable computational cost. Specifically, steady and dynamic simulations can be performed. The steady simulations are carried out in a non-inertial frame of reference linked to the rotor under uniform steady wind with the assumption of prescribed helicoidal wake. On the other hand, dynamic simulations can be enriched with a wide variety of incoming winds such as shear and yaw. Moreover, the wake shape can be freely computed under no assumptions accounting for self-induction and wake expansion or can be prescribed to an helicoidal shape for computational efficiency.
Wind Turbine
Model Order Reduction¶
Numerical models of physical phenomena require fine discretisations to show convergence and agreement with their real counterparts, and, in the case of SHARPy’s aeroelastic systems, hundreds of thousands of states are not an uncommon encounter. However, modern hardware or the use of these models for other applications such as controller synthesis may limit their size, and we must turn to model order reduction techniques to achieve lower dimensional representations that can then be used.
SHARPy offers several model order reduction methods to reduce the initially large system to a lower dimension, attending to the user’s requirements of numerical efficiency or global error bound.
Krylov Methods for Model Order Reduction - Moment Matching¶
Model reduction by moment matching can be seen as approximating a transfer function through a power series expansion about a user defined point in the complex plane. The reduction by projection retains the moments between the full and reduced systems as long as the projection matrices span certain Krylov subspaces dependant on the expansion point and the system’s matrices. This can be taken advantage of, in particular for aeroelastic applications where the interest resides in the low frequency behaviour of the system, the ROM can be expanded about these low frequency points discarding accuracy higher up the frequency spectrum.
Example 1 - Aerodynamics - Frequency response of a high AR flat plate subject to a sinusoidal gust¶
The objective is to compare SHARPy’s solution of a very high aspect ratio flat plate subject to a sinusoidal gust to the closed form solution obtained by Sears (1944 - Ref). SHARPy’s inherent 3D nature makes comparing results to the 2D solution require very high aspect ratio wings with fine discretisations, resulting in very large state space models. In this case, we would like to utilise a Krylov ROM to approximate the low frequency behaviour and perform a frequency response analysis on the reduced system, since it would represent too much computational cost if it were performed on the full system.
The full order model was reduced utilising Krylov methods, in particular the Arnoldi iteration, with an expansion about zero frequency to produce the following result.
Sears Gust Bode Plot
As it can be seen from the image above, the ROM approximates well the low frequency, quasi-steady state and loses accuracy as the frequency is increased, just as intended. Still, perfect matching is never achieved even at the expansion frequency given the 3D nature of the wing compared to the 2D analytical solution.
Example 2 - Aeroelastics - Flutter analysis of a Goland wing with modal projection¶
The Goland wing flutter example is presented next. The aerodynamic surface is finely discretised for the UVLM solution, resulting in not only a large state space but also in large input/output dimensionality. Therefore, to reduce the number of inputs and outputs, the UVLM is projected onto the structural mode shapes, the first four in this particular case. The resulting multi input multi output system (mode shapes -> UVLM -> modal forces) was subsequently reduced using Krylov methods aimed at MIMO systems which use variations of the block Arnoldi iteration. Again, the expansion frequency selected was the zero frequency. As a sample, the transfer function from two inputs to two outputs is shown to illustrate the performance of the reduced model against the full order UVLM.
Goland Reduced Order Model Transfer Functions
The reduced aerodynamic model projected onto the modal shapes was then coupled to the linearised beam model, and the stability analysed against a change in velocity. Note that the UVLM model and its ROM are actually scaled to be independent on the freestream velocity, hence only one UVLM and ROM need to be computed. The structural model needs to be updated at each test velocity but its a lot less costly in computational terms. The resulting stability of the aeroelastic system is plotted on the Argand diagram below with changing freestream velocity.
Goland Flutter
Publications¶
SHARPy has been used in many technical papers that have been both published in Journals and presented at conferences. Here we present a list of past papers which have used SHARPy for research purposes:
2022¶
Goizueta, N., Wynn, A., Palacios, R., Drachinsky, A., Raveh, D. E. (2022). Flutter Predictions for Very Flexible Wing Wind Tunnel Test. Journal of Aircraft. Article in Advance. https://doi.org/10.2514/1.C036710
Muñoz-Simón A, Wynn A, Palacios R (2022). Some modelling improvements for prediction of wind turbine rotor loads in turbulent wind. Wind Energy: 25(2), pp. 333-353. https://doi.org/10.1002/we.2675
Goizueta, N., Wynn, A., Palacios, R. (2022). Fast flutter evaluation of very flexible wing using interpolation on an optimal training dataset. AIAA SciTech Forum. https://doi.org/10.2514/6.2022-1345
Düssler, S., Goizueta, N., Muñoz-Simón, A., & Palacios, R. (2022). Modelling and Numerical Enhancements on a UVLM for Nonlinear Aeroelastic Simulation. AIAA SciTech Forum. https://doi.org/10.2514/6.2022-2455
Cea, A., Palacios, R. (2022). Parametric Reduced Order Models for Aeroelastic Design of Very Flexible Aircraft. AIAA SciTech Forum. https://doi.org/10.2514/6.2022-0727
Wynn, A., Artola, M., Palacios, R. (2022). Nonlinear optimal control for gust load alleviation with a physics-constrained data-driven internal model. AIAA SciTech Forum. https://doi.org/10.2514/6.2022-0442
2021¶
Artola, M., Goizueta, N., Wynn, A., & Palacios, R. (2021). Aeroelastic Control and Estimation with a Minimal Nonlinear Modal Description. AIAA Journal: 59(7), pp. 2697–2713. https://doi.org/10.2514/1.j060018
Artola, M., Goizueta, N., Wynn, A., & Palacios, R. (2021). Proof of Concept for a Hardware-in-the-Loop Nonlinear. In AIAA SciTech Forum (pp. 1–26). https://doi.org/10.2514/6.2021-1392
Goizueta, N., Drachinsky, A., Wynn, A., Raveh, D. E., & Palacios, R. (2021). Flutter prediction for a very flexible wing wind tunnel test. In AIAA SciTech Forum (pp. 1–17). https://doi.org/10.2514/6.2021-1711
Goizueta, N., Wynn, A., & Palacios, R. (2021). Parametric Krylov-based order reduction of aircraft aeroelastic models. In AIAA SciTech Forum (pp. 1–25). https://doi.org/10.2514/6.2021-1798
2020¶
Muñoz-Simón, A., Palacios, R., & Wynn, A. (2020). Benchmarking different fidelities in wind turbine aerodynamics under yaw. Journal of Physics: Conference Series, 1618, 42017. https://doi.org/10.1088/1742-6596/1618/4/042017
del Carre, A., & Palacios, R. (2020). Simulation and Optimization of Takeoff Maneuvers of Very Flexible Aircraft. Journal of Aircraft: 57(6) 1097-1110. https://doi.org/10.2514/1.C035901
Maraniello, S. & Palacios, R. (2020). Parametric Reduced-Order Modeling of the Unsteady Vortex-Lattice Method. AIAA Journal, 58(5), 2206-2220. https://doi.org/10.2514/1.J058894
Deskos, G., del Carre, A., & Palacios, R. (2020). Assessment of low-altitude atmospheric turbulence models for aircraft aeroelasticity. Journal of Fluids and Structures, 95, 102981. https://doi.org/10.1016/j.jfluidstructs.2020.102981
Goizueta, Norberto, del Carre, Alfonso, Muñoz-Simón, Arturo, & Palacios, Rafael. (2020, February). SHARPy: from a research code to an open-source software tool for the simulation of very flexible aircraft. RSLondonSouthEast 2020 Conference. Zenodo: http://doi.org/10.5281/zenodo.3641216
Del Carre, A., Deskos, G., & Palacios, R. (2020). Realistic turbulence effects in low altitude dynamics of very flexible aircraft. In AIAA SciTech Forum (pp. 1–18). https://doi.org/10.2514/6.2020-1187
Artola, M., Goizueta, N., Wynn, A., & Palacios, R. (2020). Modal-Based Nonlinear Estimation and Control for Highly Flexible Aeroelastic Systems. In AIAA SciTech Forum (pp. 1–23). https://doi.org/10.2514/6.2020-1192
Muñoz-Simón, A., Wynn, A., & Palacios, R. (2020). Unsteady and three-dimensional aerodynamic effects on wind turbine rotor loads. In AIAA SciTech Forum. https://doi.org/10.2514/6.2020-0991
2019¶
del Carre, A., Muñoz-Simón, A., Goizueta, N., & Palacios, R. (2019). SHARPy : A dynamic aeroelastic simulation toolbox for very flexible aircraft and wind turbines. Journal of Open Source Software, 4(44), 1885. https://doi.org/10.21105/joss.01885
del Carre, A., Teixeira, P. C., Palacios, R., & Cesnik, C. E. S. (2019). Nonlinear Response of a Very Flexible Aircraft Under Lateral Gust. In International Forum on Aeroelasticity and Structural Dynamics.
del Carre, A., & Palacios, R. (2019). Efficient Time-Domain Simulations in Nonlinear Aeroelasticity. In AIAA Scitech Forum (pp. 1–20). https://doi.org/10.2514/6.2019-2038
Maraniello, S., & Palacios, R. (2019). State-Space Realizations and Internal Balancing in Potential-Flow Aerodynamics with Arbitrary Kinematics. AIAA Journal, 57(6), 2308-2321. https://doi.org/10.2514/1.J058153
Examples¶
A set of SHARPy examples created with Jupyter Notebooks is provided for users to interact and modify cases running on SHARPy.
Flutter Analysis of a Goland Wing using the SHARPy Linear Solver¶
This is an example using SHARPy to find the flutter speed of a Goland wing by:
Calculating aerodynamic forces and deflections using a nonlinear solver
Linearising about this reference condition
Creating a reduced order model of the linearised aerodynamics
Evaluate the stability of the linearised aeroelastic system at different velocities
References¶
Maraniello, S., & Palacios, R. (2019). State-Space Realizations and Internal Balancing in Potential-Flow Aerodynamics with Arbitrary Kinematics. AIAA Journal, 57(6), 1–14. https://doi.org/10.2514/1.J058153
Required Packages¶
[1]:
import numpy as np
import matplotlib.pyplot as plt
import os
import sys
import cases.templates.flying_wings as wings # See this package for the Goland wing structural and aerodynamic definition
import sharpy.sharpy_main # used to run SHARPy from Jupyter
Problem Set-up¶
The UVLM is assembled in normalised time at a velocity of \(1 m/s\). The only matrices that need updating then with free stream velocity are the structural matrices, which is significantly cheaper to do than to update the UVLM.
[2]:
u_inf = 1.
alpha_deg = 0.
rho = 1.02
num_modes = 4
Note: To achieve convergence of the flutter results with the ones found in the literature, a significant discretisation may be required. If you are running this notebook for the first time, set M = 4
initially to verify that your system can perform!
[3]:
M = 16
N = 32
M_star_fact = 10
A moment-matching (Krylov subspace) model order reduction technique is employed. This ROM method offers the ability to interpolate the transfer functions at a desired point in the complex plane. See the ROM documentation pages for more info.
Note: this ROM method matches the transfer function but does not guarantee stability. Therefore the resulting system may be unstable. These unstable modes may appear far in the right hand plane but will not affect the flutter speed calculations.
[4]:
c_ref = 1.8288 # Goland wing reference chord. Used for frequency normalisation
rom_settings = dict()
rom_settings['algorithm'] = 'mimo_rational_arnoldi' # reduction algorithm
rom_settings['r'] = 6 # Krylov subspace order
frequency_continuous_k = np.array([0.]) # Interpolation point in the complex plane with reduced frequency units
frequency_continuous_w = 2 * u_inf * frequency_continuous_k / c_ref
rom_settings['frequency'] = frequency_continuous_w
[5]:
case_name = 'goland_cs'
case_nlin_info = 'M%dN%dMs%d_nmodes%d' % (M, N, M_star_fact, num_modes)
case_rom_info = 'rom_MIMORA_r%d_sig%04d_%04dj' % (rom_settings['r'], frequency_continuous_k[-1].real * 100,
frequency_continuous_k[-1].imag * 100)
case_name += case_nlin_info + case_rom_info
route_test_dir = os.path.abspath('')
print('The case to run will be: %s' % case_name)
print('Case files will be saved in ./cases/%s' %case_name)
print('Output files will be saved in ./output/%s/' %case_name)
The case to run will be: goland_csM16N32Ms10_nmodes4rom_MIMORA_r6_sig0000_0000j
Case files will be saved in ./cases/goland_csM16N32Ms10_nmodes4rom_MIMORA_r6_sig0000_0000j
Output files will be saved in ./output/goland_csM16N32Ms10_nmodes4rom_MIMORA_r6_sig0000_0000j/
Simulation Set-Up¶
ws
is an instance of a Goland wing with a control surface. Reference the template file cases.templates.flying_wings.GolandControlSurface
for more info on the geometrical, structural and aerodynamic definition of the Goland wing here used.
[6]:
ws = wings.GolandControlSurface(M=M,
N=N,
Mstar_fact=M_star_fact,
u_inf=u_inf,
alpha=alpha_deg,
cs_deflection=[0, 0],
rho=rho,
sweep=0,
physical_time=2,
n_surfaces=2,
route=route_test_dir + '/cases',
case_name=case_name)
ws.clean_test_files()
ws.update_derived_params()
ws.set_default_config_dict()
ws.generate_aero_file()
ws.generate_fem_file()
The settings for each of the solvers are now set. For a detailed description on them please reference their respective documentation pages
SHARPy Settings¶
The most important setting is the flow
list. It tells SHARPy which solvers to run and in which order.
[7]:
ws.config['SHARPy'] = {
'flow':
['BeamLoader', 'AerogridLoader',
'StaticCoupled',
'AerogridPlot',
'BeamPlot',
'Modal',
'LinearAssembler',
'AsymptoticStability',
],
'case': ws.case_name, 'route': ws.route,
'write_screen': 'on', 'write_log': 'on',
'log_folder': route_test_dir + '/output/',
'log_file': ws.case_name + '.log'}
Beam Loader Settings¶
[8]:
ws.config['BeamLoader'] = {
'unsteady': 'off',
'orientation': ws.quat}
Aerogrid Loader Settings¶
[9]:
ws.config['AerogridLoader'] = {
'unsteady': 'off',
'aligned_grid': 'on',
'mstar': ws.Mstar_fact * ws.M,
'freestream_dir': ws.u_inf_direction,
'wake_shape_generator': 'StraightWake',
'wake_shape_generator_input': {'u_inf': ws.u_inf,
'u_inf_direction': ws.u_inf_direction,
'dt': ws.dt}}
Static Coupled Solver¶
[10]:
ws.config['StaticCoupled'] = {
'print_info': 'on',
'max_iter': 200,
'n_load_steps': 1,
'tolerance': 1e-10,
'relaxation_factor': 0.,
'aero_solver': 'StaticUvlm',
'aero_solver_settings': {
'rho': ws.rho,
'print_info': 'off',
'horseshoe': 'off',
'num_cores': 4,
'n_rollup': 0,
'rollup_dt': ws.dt,
'rollup_aic_refresh': 1,
'rollup_tolerance': 1e-4,
'velocity_field_generator': 'SteadyVelocityField',
'velocity_field_input': {
'u_inf': ws.u_inf,
'u_inf_direction': ws.u_inf_direction}},
'structural_solver': 'NonLinearStatic',
'structural_solver_settings': {'print_info': 'off',
'max_iterations': 150,
'num_load_steps': 4,
'delta_curved': 1e-1,
'min_delta': 1e-10,
'gravity_on': 'on',
'gravity': 9.81}}
AerogridPlot Settings¶
[11]:
ws.config['AerogridPlot'] = {'include_rbm': 'off',
'include_applied_forces': 'on',
'minus_m_star': 0}
BeamPlot Settings¶
[12]:
ws.config['BeamPlot'] = {'include_rbm': 'off',
'include_applied_forces': 'on'}
Modal Solver Settings¶
[13]:
ws.config['Modal'] = {'NumLambda': 20,
'rigid_body_modes': 'off',
'print_matrices': 'on',
'keep_linear_matrices': 'on',
'write_dat': 'off',
'rigid_modes_cg': 'off',
'continuous_eigenvalues': 'off',
'dt': 0,
'plot_eigenvalues': False,
'max_rotation_deg': 15.,
'max_displacement': 0.15,
'write_modes_vtk': True,
'use_undamped_modes': True}
Linear System Assembly Settings¶
[14]:
ws.config['LinearAssembler'] = {'linear_system': 'LinearAeroelastic',
'linear_system_settings': {
'beam_settings': {'modal_projection': 'on',
'inout_coords': 'modes',
'discrete_time': 'on',
'newmark_damp': 0.5e-4,
'discr_method': 'newmark',
'dt': ws.dt,
'proj_modes': 'undamped',
'use_euler': 'off',
'num_modes': num_modes,
'print_info': 'on',
'gravity': 'on',
'remove_sym_modes': 'on',
'remove_dofs': []},
'aero_settings': {'dt': ws.dt,
'ScalingDict': {'length': 0.5 * ws.c_ref,
'speed': u_inf,
'density': rho},
'integr_order': 2,
'density': ws.rho,
'remove_predictor': 'on',
'use_sparse': 'on',
'remove_inputs': ['u_gust'],
'rom_method': ['Krylov'],
'rom_method_settings': {'Krylov': rom_settings}},
}}
Asymptotic Stability Analysis Settings¶
[15]:
ws.config['AsymptoticStability'] = {'print_info': True,
'velocity_analysis': [100, 180, 81],
'modes_to_plot': []}
[16]:
ws.config.write()
Run SHARPy¶
[17]:
sharpy.sharpy_main.main(['', ws.route + ws.case_name + '.sharpy'])
--------------------------------------------------------------------------------
###### ## ## ### ######## ######## ## ##
## ## ## ## ## ## ## ## ## ## ## ##
## ## ## ## ## ## ## ## ## ####
###### ######### ## ## ######## ######## ##
## ## ## ######### ## ## ## ##
## ## ## ## ## ## ## ## ## ##
###### ## ## ## ## ## ## ## ##
--------------------------------------------------------------------------------
Aeroelastics Lab, Aeronautics Department.
Copyright (c), Imperial College London.
All rights reserved.
License available at https://github.com/imperialcollegelondon/sharpy
Running SHARPy from /home/ng213/2TB/pazy_code/pazy-sharpy/lib/sharpy/docs/source/content/example_notebooks
SHARPy being run is in /home/ng213/2TB/pazy_code/pazy-sharpy/lib/sharpy
The branch being run is dev_setting_error
The version and commit hash are: v1.2.1-339-g156c731-156c731
SHARPy output folder set
/home/ng213/2TB/pazy_code/pazy-sharpy/lib/sharpy/docs/source/content/example_notebooks/output//goland_csM16N32Ms10_nmodes4rom_MIMORA_r6_sig0000_0000j/
Generating an instance of BeamLoader
Variable for_pos has no assigned value in the settings file.
will default to the value: [0.0, 0, 0]
Generating an instance of AerogridLoader
Variable control_surface_deflection has no assigned value in the settings file.
will default to the value: []
Variable control_surface_deflection_generator_settings has no assigned value in the settings file.
will default to the value: {}
Variable dx1 has no assigned value in the settings file.
will default to the value: -1.0
Variable ndx1 has no assigned value in the settings file.
will default to the value: 1
Variable r has no assigned value in the settings file.
will default to the value: 1.0
Variable dxmax has no assigned value in the settings file.
will default to the value: -1.0
The aerodynamic grid contains 2 surfaces
Surface 0, M=16, N=16
Wake 0, M=160, N=16
Surface 1, M=16, N=16
Wake 1, M=160, N=16
In total: 512 bound panels
In total: 5120 wake panels
Total number of panels = 5632
Generating an instance of StaticCoupled
Variable correct_forces_method has no assigned value in the settings file.
will default to the value:
Variable runtime_generators has no assigned value in the settings file.
will default to the value: {}
Generating an instance of NonLinearStatic
Variable newmark_damp has no assigned value in the settings file.
will default to the value: 0.0001
Variable gravity_dir has no assigned value in the settings file.
will default to the value: [0.0, 0.0, 1.0]
Variable relaxation_factor has no assigned value in the settings file.
will default to the value: 0.3
Variable dt has no assigned value in the settings file.
will default to the value: 0.01
Variable num_steps has no assigned value in the settings file.
will default to the value: 500
Variable initial_position has no assigned value in the settings file.
will default to the value: [0. 0. 0.]
Generating an instance of StaticUvlm
Variable iterative_solver has no assigned value in the settings file.
will default to the value: False
Variable iterative_tol has no assigned value in the settings file.
will default to the value: 0.0001
Variable iterative_precond has no assigned value in the settings file.
will default to the value: False
Variable cfl1 has no assigned value in the settings file.
will default to the value: True
Variable vortex_radius has no assigned value in the settings file.
will default to the value: 1e-06
Variable vortex_radius_wake_ind has no assigned value in the settings file.
will default to the value: 1e-06
Variable rbm_vel_g has no assigned value in the settings file.
will default to the value: [0.0, 0.0, 0.0, 0.0, 0.0, 0.0]
Variable centre_rot_g has no assigned value in the settings file.
will default to the value: [0.0, 0.0, 0.0]
|=====|=====|============|==========|==========|==========|==========|==========|==========|
|iter |step | log10(res) | Fx | Fy | Fz | Mx | My | Mz |
|=====|=====|============|==========|==========|==========|==========|==========|==========|
| 0 | 0 | 0.00000 | 0.0000 | -0.0000 |-4271.0417| 0.0000 | 781.0842 | 0.0000 |
| 1 | 0 | -11.89144 | 0.0000 | -0.0000 |-4271.0039| 0.0000 | 781.0906 | 0.0000 |
Generating an instance of AerogridPlot
Variable include_forward_motion has no assigned value in the settings file.
will default to the value: False
Variable include_unsteady_applied_forces has no assigned value in the settings file.
will default to the value: False
Variable name_prefix has no assigned value in the settings file.
will default to the value:
Variable u_inf has no assigned value in the settings file.
will default to the value: 0.0
Variable dt has no assigned value in the settings file.
will default to the value: 0.0
Variable include_velocities has no assigned value in the settings file.
will default to the value: False
Variable include_incidence_angle has no assigned value in the settings file.
will default to the value: False
Variable num_cores has no assigned value in the settings file.
will default to the value: 1
Variable vortex_radius has no assigned value in the settings file.
will default to the value: 1e-06
...Finished
Generating an instance of BeamPlot
Variable include_FoR has no assigned value in the settings file.
will default to the value: False
Variable include_applied_moments has no assigned value in the settings file.
will default to the value: True
Variable name_prefix has no assigned value in the settings file.
will default to the value:
Variable output_rbm has no assigned value in the settings file.
will default to the value: True
...Finished
Generating an instance of Modal
Variable print_info has no assigned value in the settings file.
will default to the value: True
Variable delta_curved has no assigned value in the settings file.
will default to the value: 0.01
Variable use_custom_timestep has no assigned value in the settings file.
will default to the value: -1
Structural eigenvalues
|==============|==============|==============|==============|==============|==============|==============|
| mode | eval_real | eval_imag | freq_n (Hz) | freq_d (Hz) | damping | period (s) |
|==============|==============|==============|==============|==============|==============|==============|
| 0 | 0.000000 | 48.067396 | 7.650164 | 7.650164 | -0.000000 | 0.130716 |
| 1 | 0.000000 | 48.067398 | 7.650164 | 7.650164 | -0.000000 | 0.130716 |
| 2 | 0.000000 | 95.685736 | 15.228858 | 15.228858 | -0.000000 | 0.065665 |
| 3 | 0.000000 | 95.685754 | 15.228861 | 15.228861 | -0.000000 | 0.065665 |
| 4 | 0.000000 | 243.144471 | 38.697644 | 38.697644 | -0.000000 | 0.025841 |
| 5 | 0.000000 | 243.144477 | 38.697645 | 38.697645 | -0.000000 | 0.025841 |
| 6 | 0.000000 | 343.801136 | 54.717650 | 54.717650 | -0.000000 | 0.018276 |
| 7 | 0.000000 | 343.801137 | 54.717650 | 54.717650 | -0.000000 | 0.018276 |
| 8 | 0.000000 | 443.324608 | 70.557303 | 70.557303 | -0.000000 | 0.014173 |
| 9 | 0.000000 | 443.324619 | 70.557304 | 70.557304 | -0.000000 | 0.014173 |
| 10 | 0.000000 | 461.992869 | 73.528449 | 73.528449 | -0.000000 | 0.013600 |
| 11 | 0.000000 | 461.992869 | 73.528449 | 73.528449 | -0.000000 | 0.013600 |
| 12 | 0.000000 | 601.126871 | 95.672313 | 95.672313 | -0.000000 | 0.010452 |
| 13 | 0.000000 | 601.126873 | 95.672313 | 95.672313 | -0.000000 | 0.010452 |
| 14 | 0.000000 | 782.997645 | 124.617946 | 124.617946 | -0.000000 | 0.008025 |
| 15 | 0.000000 | 782.997649 | 124.617946 | 124.617946 | -0.000000 | 0.008025 |
| 16 | 0.000000 | 917.191257 | 145.975522 | 145.975522 | -0.000000 | 0.006850 |
| 17 | 0.000000 | 917.191259 | 145.975523 | 145.975523 | -0.000000 | 0.006850 |
| 18 | 0.000000 | 975.005694 | 155.176976 | 155.176976 | -0.000000 | 0.006444 |
| 19 | 0.000000 | 975.005699 | 155.176977 | 155.176977 | -0.000000 | 0.006444 |
Generating an instance of LinearAssembler
Variable linearisation_tstep has no assigned value in the settings file.
will default to the value: -1
Variable modal_tstep has no assigned value in the settings file.
will default to the value: -1
Variable inout_coordinates has no assigned value in the settings file.
will default to the value:
Variable retain_inputs has no assigned value in the settings file.
will default to the value: []
Variable retain_outputs has no assigned value in the settings file.
will default to the value: []
Generating an instance of LinearAeroelastic
Variable uvlm_filename has no assigned value in the settings file.
will default to the value:
Variable track_body has no assigned value in the settings file.
will default to the value: True
Variable use_euler has no assigned value in the settings file.
will default to the value: False
Generating an instance of LinearUVLM
Variable gust_assembler has no assigned value in the settings file.
will default to the value:
Variable vortex_radius has no assigned value in the settings file.
will default to the value: 1e-06
Variable cfl1 has no assigned value in the settings file.
will default to the value: True
Variable velocity_field_generator has no assigned value in the settings file.
will default to the value: SteadyVelocityField
Variable velocity_field_input has no assigned value in the settings file.
will default to the value: {}
Variable physical_model has no assigned value in the settings file.
will default to the value: True
Variable track_body has no assigned value in the settings file.
will default to the value: False
Variable track_body_number has no assigned value in the settings file.
will default to the value: -1
Initialising Static linear UVLM solver class...
...done in 1.35 sec
Generating an instance of Krylov
Variable print_info has no assigned value in the settings file.
will default to the value: True
Variable single_side has no assigned value in the settings file.
will default to the value:
Variable tangent_input_file has no assigned value in the settings file.
will default to the value:
Variable restart_arnoldi has no assigned value in the settings file.
will default to the value: False
Initialising Krylov Model Order Reduction
State-space realisation of UVLM equations started...
Computing wake propagation matrix with CFL1=True
/home/ng213/anaconda3/envs/sharpy_env/lib/python3.7/site-packages/scipy/sparse/_index.py:126: SparseEfficiencyWarning: Changing the sparsity structure of a csc_matrix is expensive. lil_matrix is more efficient.
self._set_arrayXarray(i, j, x)
state-space model produced in form:
h_{n+1} = A h_{n} + B u_{n}
with:
x_n = h_n + Bp u_n
...done in 17.25 sec
Scaling UVLM system with reference time 0.914400s
Non-dimensional time step set (0.125000)
System scaled in 31.698308s
Generating an instance of LinearBeam
Warning, projecting system with damping onto undamped modes
Linearising gravity terms...
M = 7.26 kg
X_CG A -> 0.00 0.00 -0.00
Node 1 -> B -0.000 -0.116 0.000
-> A 0.116 0.381 -0.000
-> G 0.116 0.381 -0.000
Node mass:
Matrix: 14.5125
Node 2 -> B -0.000 -0.116 0.000
-> A 0.116 0.762 -0.000
-> G 0.116 0.762 -0.000
Node mass:
Matrix: 7.2563
Node 3 -> B -0.000 -0.116 0.000
-> A 0.116 1.143 -0.000
-> G 0.116 1.143 -0.000
Node mass:
Matrix: 14.5125
Node 4 -> B -0.000 -0.116 0.000
-> A 0.116 1.524 -0.001
-> G 0.116 1.524 -0.001
Node mass:
Matrix: 7.2563
Node 5 -> B -0.000 -0.116 0.000
-> A 0.116 1.905 -0.001
-> G 0.116 1.905 -0.001
Node mass:
Matrix: 14.5125
Node 6 -> B -0.000 -0.116 0.000
-> A 0.116 2.286 -0.001
-> G 0.116 2.286 -0.001
Node mass:
Matrix: 7.2563
Node 7 -> B -0.000 -0.116 0.000
-> A 0.116 2.667 -0.002
-> G 0.116 2.667 -0.002
Node mass:
Matrix: 14.5125
Node 8 -> B -0.000 -0.116 0.000
-> A 0.116 3.048 -0.002
-> G 0.116 3.048 -0.002
Node mass:
Matrix: 7.2563
Node 9 -> B -0.000 -0.116 0.000
-> A 0.116 3.429 -0.003
-> G 0.116 3.429 -0.003
Node mass:
Matrix: 14.5125
Node 10 -> B -0.000 -0.116 0.000
-> A 0.116 3.810 -0.003
-> G 0.116 3.810 -0.003
Node mass:
Matrix: 7.2563
Node 11 -> B -0.000 -0.116 0.000
-> A 0.116 4.191 -0.004
-> G 0.116 4.191 -0.004
Node mass:
Matrix: 14.5125
Node 12 -> B -0.000 -0.116 0.000
-> A 0.116 4.572 -0.004
-> G 0.116 4.572 -0.004
Node mass:
Matrix: 7.2563
Node 13 -> B -0.000 -0.116 0.000
-> A 0.116 4.953 -0.005
-> G 0.116 4.953 -0.005
Node mass:
Matrix: 14.5125
Node 14 -> B -0.000 -0.116 0.000
-> A 0.116 5.334 -0.005
-> G 0.116 5.334 -0.005
Node mass:
Matrix: 7.2563
Node 15 -> B -0.000 -0.116 0.000
-> A 0.116 5.715 -0.006
-> G 0.116 5.715 -0.006
Node mass:
Matrix: 14.5125
Node 16 -> B -0.000 -0.116 0.000
-> A 0.116 6.096 -0.006
-> G 0.116 6.096 -0.006
Node mass:
Matrix: 3.6281
Node 17 -> B -0.000 -0.116 -0.000
-> A 0.116 -6.096 -0.006
-> G 0.116 -6.096 -0.006
Node mass:
Matrix: 3.6281
Node 18 -> B -0.000 -0.116 -0.000
-> A 0.116 -5.715 -0.006
-> G 0.116 -5.715 -0.006
Node mass:
Matrix: 14.5125
Node 19 -> B -0.000 -0.116 -0.000
-> A 0.116 -5.334 -0.005
-> G 0.116 -5.334 -0.005
Node mass:
Matrix: 7.2563
Node 20 -> B -0.000 -0.116 -0.000
-> A 0.116 -4.953 -0.005
-> G 0.116 -4.953 -0.005
Node mass:
Matrix: 14.5125
Node 21 -> B -0.000 -0.116 -0.000
-> A 0.116 -4.572 -0.004
-> G 0.116 -4.572 -0.004
Node mass:
Matrix: 7.2563
Node 22 -> B -0.000 -0.116 -0.000
-> A 0.116 -4.191 -0.004
-> G 0.116 -4.191 -0.004
Node mass:
Matrix: 14.5125
Node 23 -> B -0.000 -0.116 -0.000
-> A 0.116 -3.810 -0.003
-> G 0.116 -3.810 -0.003
Node mass:
Matrix: 7.2563
Node 24 -> B -0.000 -0.116 -0.000
-> A 0.116 -3.429 -0.003
-> G 0.116 -3.429 -0.003
Node mass:
Matrix: 14.5125
Node 25 -> B -0.000 -0.116 -0.000
-> A 0.116 -3.048 -0.002
-> G 0.116 -3.048 -0.002
Node mass:
Matrix: 7.2563
Node 26 -> B -0.000 -0.116 -0.000
-> A 0.116 -2.667 -0.002
-> G 0.116 -2.667 -0.002
Node mass:
Matrix: 14.5125
Node 27 -> B -0.000 -0.116 -0.000
-> A 0.116 -2.286 -0.002
-> G 0.116 -2.286 -0.002
Node mass:
Matrix: 7.2563
Node 28 -> B -0.000 -0.116 -0.000
-> A 0.116 -1.905 -0.001
-> G 0.116 -1.905 -0.001
Node mass:
Matrix: 14.5125
Node 29 -> B -0.000 -0.116 -0.000
-> A 0.116 -1.524 -0.001
-> G 0.116 -1.524 -0.001
Node mass:
Matrix: 7.2563
Node 30 -> B -0.000 -0.116 -0.000
-> A 0.116 -1.143 -0.000
-> G 0.116 -1.143 -0.000
Node mass:
Matrix: 14.5125
Node 31 -> B -0.000 -0.116 -0.000
-> A 0.116 -0.762 -0.000
-> G 0.116 -0.762 -0.000
Node mass:
Matrix: 7.2563
Node 32 -> B -0.000 -0.116 -0.000
-> A 0.116 -0.381 -0.000
-> G 0.116 -0.381 -0.000
Node mass:
Matrix: 14.5125
Updated the beam C, modal C and K matrices with the terms from the
gravity linearisation
Scaling beam according to reduced time...
Setting the beam time step to (0.1250)
Updating C and K matrices and natural frequencies with new normalised time...
Model Order Reduction in progress...
Moment Matching Krylov Model Reduction
Construction Algorithm:
mimo_rational_arnoldi
Interpolation points:
sigma = 0.000000 + 0.000000j [rad/s]
Krylov order:
r = 6
Constructing controllability space
Constructing observability space
Deflating column 23
Deflating column 25
Deflating column 28
Deflating column 33
ROM is stable
DT Eigenvalues:
mu = 0.992076 + -0.000000j
mu = 0.971409 + -0.000000j
mu = 0.957534 + -0.038927j
mu = 0.957534 + 0.038927j
mu = 0.954926 + -0.072820j
mu = 0.954926 + 0.072820j
mu = 0.954282 + -0.000000j
mu = 0.935272 + 0.000000j
mu = 0.927865 + 0.092012j
mu = 0.927865 + -0.092012j
mu = 0.927075 + -0.066636j
mu = 0.927075 + 0.066636j
mu = 0.925588 + 0.038813j
mu = 0.925588 + -0.038813j
mu = 0.922836 + -0.004482j
mu = 0.922836 + 0.004482j
mu = 0.915491 + -0.025196j
mu = 0.915491 + 0.025196j
mu = 0.908662 + 0.053066j
mu = 0.908662 + -0.053066j
mu = 0.881127 + -0.056743j
mu = 0.881127 + 0.056743j
mu = 0.882642 + -0.000000j
mu = 0.867726 + -0.000000j
mu = 0.717587 + 0.263893j
mu = 0.717587 + -0.263893j
mu = 0.697184 + 0.000000j
mu = 0.360807 + 0.000000j
mu = -0.000018 + -0.002663j
mu = -0.000018 + 0.002663j
mu = 0.000155 + -0.000000j
mu = -0.000154 + 0.000000j
System reduced from order 6656 to
n = 32 states
...Completed Model Order Reduction in 5.16 s
Aeroelastic system assembled:
Aerodynamic states: 32
Structural states: 4
Total states: 36
Inputs: 8
Outputs: 6
Final system is:
State-space system
States: 36
Inputs: 8
Outputs: 6
Generating an instance of AsymptoticStability
Variable reference_velocity has no assigned value in the settings file.
will default to the value: 1.0
Variable frequency_cutoff has no assigned value in the settings file.
will default to the value: 0.0
Variable export_eigenvalues has no assigned value in the settings file.
will default to the value: False
Variable display_root_locus has no assigned value in the settings file.
will default to the value: False
Variable iterative_eigvals has no assigned value in the settings file.
will default to the value: False
Variable num_evals has no assigned value in the settings file.
will default to the value: 200
Variable postprocessors has no assigned value in the settings file.
will default to the value: []
Variable postprocessors_settings has no assigned value in the settings file.
will default to the value: {}
Dynamical System Eigenvalues
Calculating eigenvalues using direct method
|==============|==============|==============|==============|==============|==============|==============|
| mode | eval_real | eval_imag | freq_n (Hz) | freq_d (Hz) | damping | period (s) |
|==============|==============|==============|==============|==============|==============|==============|
| 0 | -0.021637 | 24.315428 | 3.869922 | 3.869921 | 0.000890 | 0.258403 |
| 1 | -0.021637 | -24.315428 | 3.869922 | 3.869921 | 0.000890 | 0.258403 |
| 2 | -0.069601 | -0.000000 | 0.011077 | 0.000000 | 1.000000 | inf |
| 3 | -0.105223 | -21.320535 | 3.393310 | 3.393269 | 0.004935 | 0.294701 |
| 4 | -0.105223 | 21.320535 | 3.393310 | 3.393269 | 0.004935 | 0.294701 |
| 5 | -0.253787 | -0.000000 | 0.040391 | 0.000000 | 1.000000 | inf |
| 6 | -0.372425 | 0.355473 | 0.081940 | 0.056575 | 0.723379 | 17.675568 |
| 7 | -0.372425 | -0.355473 | 0.081940 | 0.056575 | 0.723379 | 17.675568 |
| 8 | -0.378143 | 0.665882 | 0.121875 | 0.105978 | 0.493812 | 9.435879 |
| 9 | -0.378143 | -0.665882 | 0.121875 | 0.105978 | 0.493812 | 9.435879 |
| 10 | -0.409413 | -0.000000 | 0.065160 | 0.000000 | 1.000000 | inf |
| 11 | -0.585461 | 0.000000 | 0.093179 | 0.000000 | 1.000000 | inf |
| 12 | -0.612214 | -0.864763 | 0.168631 | 0.137631 | 0.577812 | 7.265789 |
| 13 | -0.612214 | 0.864763 | 0.168631 | 0.137631 | 0.577812 | 7.265789 |
| 14 | -0.639935 | 0.627769 | 0.142673 | 0.099913 | 0.713860 | 10.008752 |
| 15 | -0.639935 | -0.627769 | 0.142673 | 0.099913 | 0.713860 | 10.008752 |
| 16 | -0.668833 | 0.366654 | 0.121394 | 0.058355 | 0.876881 | 17.136529 |
| 17 | -0.668833 | -0.366654 | 0.121394 | 0.058355 | 0.876881 | 17.136529 |
| 18 | -0.702465 | 0.042487 | 0.112005 | 0.006762 | 0.998176 | 147.883816 |
| 19 | -0.702465 | -0.042487 | 0.112005 | 0.006762 | 0.998176 | 147.883816 |
| 20 | -0.769174 | 0.240726 | 0.128273 | 0.038313 | 0.954353 | 26.100974 |
| 21 | -0.769174 | -0.240726 | 0.128273 | 0.038313 | 0.954353 | 26.100974 |
| 22 | -0.823096 | 0.510355 | 0.154138 | 0.081226 | 0.849886 | 12.311395 |
| 23 | -0.823096 | -0.510355 | 0.154138 | 0.081226 | 0.849886 | 12.311395 |
| 24 | -1.089098 | 0.562639 | 0.195099 | 0.089547 | 0.888447 | 11.167353 |
| 25 | -1.089098 | -0.562639 | 0.195099 | 0.089547 | 0.888447 | 11.167353 |
| 26 | -1.092180 | -0.000000 | 0.173826 | 0.000000 | 1.000000 | inf |
| 27 | -1.241288 | 0.000000 | 0.197557 | 0.000000 | 1.000000 | inf |
| 28 | -2.348569 | 3.083089 | 0.616840 | 0.490689 | 0.605970 | 2.037951 |
| 29 | -2.348569 | -3.083089 | 0.616840 | 0.490689 | 0.605970 | 2.037951 |
| 30 | -3.155780 | -0.000000 | 0.502258 | 0.000000 | 1.000000 | inf |
| 31 | -8.918115 | -0.000000 | 1.419362 | 0.000000 | 1.000000 | inf |
| 32 | -26.700406 | -27.485500 | 6.098697 | 4.374453 | 0.696788 | 0.228600 |
| 33 | -28.824123 | 0.000000 | 4.587502 | 0.000000 | 1.000000 | inf |
| 34 | -35.766803 | -27.485500 | 7.179135 | 4.374453 | 0.792918 | 0.228600 |
| 35 | -36.676675 | -0.000000 | 5.837274 | 0.000000 | 1.000000 | inf |
Velocity Asymptotic Stability Analysis
Initial velocity: 100.00 m/s
Final velocity: 180.00 m/s
Number of evaluations: 81
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 100.00 m/2 max. CT eig. real: -3.925687
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 101.00 m/2 max. CT eig. real: -3.951244
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 102.00 m/2 max. CT eig. real: -3.975951
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 103.00 m/2 max. CT eig. real: -3.999782
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 104.00 m/2 max. CT eig. real: -4.022709
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 105.00 m/2 max. CT eig. real: -4.044705
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 106.00 m/2 max. CT eig. real: -4.065744
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 107.00 m/2 max. CT eig. real: -4.085798
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 108.00 m/2 max. CT eig. real: -4.104841
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 109.00 m/2 max. CT eig. real: -4.122845
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 110.00 m/2 max. CT eig. real: -4.139781
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 111.00 m/2 max. CT eig. real: -4.155617
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 112.00 m/2 max. CT eig. real: -4.170322
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 113.00 m/2 max. CT eig. real: -4.183860
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 114.00 m/2 max. CT eig. real: -4.196192
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 115.00 m/2 max. CT eig. real: -4.207276
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 116.00 m/2 max. CT eig. real: -4.217065
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 117.00 m/2 max. CT eig. real: -4.225507
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 118.00 m/2 max. CT eig. real: -4.232544
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 119.00 m/2 max. CT eig. real: -4.238111
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 120.00 m/2 max. CT eig. real: -4.242138
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 121.00 m/2 max. CT eig. real: -4.244545
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 122.00 m/2 max. CT eig. real: -4.245246
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 123.00 m/2 max. CT eig. real: -4.244143
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 124.00 m/2 max. CT eig. real: -4.241130
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 125.00 m/2 max. CT eig. real: -4.236092
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 126.00 m/2 max. CT eig. real: -4.228899
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 127.00 m/2 max. CT eig. real: -4.219413
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 128.00 m/2 max. CT eig. real: -4.207482
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 129.00 m/2 max. CT eig. real: -4.192940
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 130.00 m/2 max. CT eig. real: -4.175607
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 131.00 m/2 max. CT eig. real: -4.155291
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 132.00 m/2 max. CT eig. real: -4.131780
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 133.00 m/2 max. CT eig. real: -4.104848
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 134.00 m/2 max. CT eig. real: -4.074252
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 135.00 m/2 max. CT eig. real: -4.039730
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 136.00 m/2 max. CT eig. real: -4.001000
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 137.00 m/2 max. CT eig. real: -3.957763
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 138.00 m/2 max. CT eig. real: -3.909697
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 139.00 m/2 max. CT eig. real: -3.856462
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 140.00 m/2 max. CT eig. real: -3.797697
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 141.00 m/2 max. CT eig. real: -3.733020
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 142.00 m/2 max. CT eig. real: -3.662031
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 143.00 m/2 max. CT eig. real: -3.584314
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 144.00 m/2 max. CT eig. real: -3.499436
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 145.00 m/2 max. CT eig. real: -3.406959
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 146.00 m/2 max. CT eig. real: -3.306437
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 147.00 m/2 max. CT eig. real: -3.197433
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 148.00 m/2 max. CT eig. real: -3.079522
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 149.00 m/2 max. CT eig. real: -2.952307
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 150.00 m/2 max. CT eig. real: -2.815436
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 151.00 m/2 max. CT eig. real: -2.668615
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 152.00 m/2 max. CT eig. real: -2.511634
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 153.00 m/2 max. CT eig. real: -2.344382
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 154.00 m/2 max. CT eig. real: -2.166866
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 155.00 m/2 max. CT eig. real: -1.979231
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 156.00 m/2 max. CT eig. real: -1.781770
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 157.00 m/2 max. CT eig. real: -1.574929
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 158.00 m/2 max. CT eig. real: -1.359301
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 159.00 m/2 max. CT eig. real: -1.135613
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 160.00 m/2 max. CT eig. real: -0.904707
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 161.00 m/2 max. CT eig. real: -0.667505
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 162.00 m/2 max. CT eig. real: -0.424982
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 163.00 m/2 max. CT eig. real: -0.178127
N unstab.: 000
Unstable aeroelastic natural frequency CT(rad/s):
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 164.00 m/2 max. CT eig. real: 0.072086
N unstab.: 002
Unstable aeroelastic natural frequency CT(rad/s): 70.64 70.64
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 165.00 m/2 max. CT eig. real: 0.324729
N unstab.: 002
Unstable aeroelastic natural frequency CT(rad/s): 70.41 70.41
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 166.00 m/2 max. CT eig. real: 0.578936
N unstab.: 002
Unstable aeroelastic natural frequency CT(rad/s): 70.20 70.20
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 167.00 m/2 max. CT eig. real: 0.833925
N unstab.: 002
Unstable aeroelastic natural frequency CT(rad/s): 69.99 69.99
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 168.00 m/2 max. CT eig. real: 1.088998
N unstab.: 002
Unstable aeroelastic natural frequency CT(rad/s): 69.79 69.79
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 169.00 m/2 max. CT eig. real: 1.343552
N unstab.: 002
Unstable aeroelastic natural frequency CT(rad/s): 69.61 69.61
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 170.00 m/2 max. CT eig. real: 1.597068
N unstab.: 002
Unstable aeroelastic natural frequency CT(rad/s): 69.43 69.43
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 171.00 m/2 max. CT eig. real: 1.849117
N unstab.: 002
Unstable aeroelastic natural frequency CT(rad/s): 69.26 69.26
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 172.00 m/2 max. CT eig. real: 2.099343
N unstab.: 002
Unstable aeroelastic natural frequency CT(rad/s): 69.10 69.10
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 173.00 m/2 max. CT eig. real: 2.347461
N unstab.: 002
Unstable aeroelastic natural frequency CT(rad/s): 68.94 68.94
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 174.00 m/2 max. CT eig. real: 2.593246
N unstab.: 002
Unstable aeroelastic natural frequency CT(rad/s): 68.79 68.79
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 175.00 m/2 max. CT eig. real: 2.836529
N unstab.: 002
Unstable aeroelastic natural frequency CT(rad/s): 68.65 68.65
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 176.00 m/2 max. CT eig. real: 3.077180
N unstab.: 002
Unstable aeroelastic natural frequency CT(rad/s): 68.51 68.51
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 177.00 m/2 max. CT eig. real: 3.315113
N unstab.: 002
Unstable aeroelastic natural frequency CT(rad/s): 68.38 68.38
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 178.00 m/2 max. CT eig. real: 3.550268
N unstab.: 002
Unstable aeroelastic natural frequency CT(rad/s): 68.25 68.25
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 179.00 m/2 max. CT eig. real: 3.782616
N unstab.: 002
Unstable aeroelastic natural frequency CT(rad/s): 68.13 68.13
Updating C and K matrices and natural frequencies with new normalised time...
LTI u: 180.00 m/2 max. CT eig. real: 4.012145
N unstab.: 002
Unstable aeroelastic natural frequency CT(rad/s): 68.01 68.01
Saving velocity analysis results...
Successful
FINISHED - Elapsed time = 59.1569176 seconds
FINISHED - CPU process time = 94.3774846 seconds
[17]:
<sharpy.presharpy.presharpy.PreSharpy at 0x7f85b5231850>
Analysis¶
The nonlinear equilibrium condition can be visualised and analysed by opening, with Paraview, the files in the /output/<case_name>/aero
and /output/<case_name>/beam
folders to see the deflection and aerodynamic forces acting
The stability of the Goland wing is now analysed under changing free stream velocity. The aeroelastic system is projected onto 2 structural modes (1st bending and 1st torsion). The two modes are seen quite separated at 100 m/s. As speed is increased, the damping of the torsion mode decreases until it crosses the imaginary axis onto the right hand plane and flutter begins. This flutter mode is a bending-torsion mode, as seen from the natural frequency plot where the frequencies of each coalesce into this mode.
[18]:
file_name = './output/%s/stability/velocity_analysis_min1000_max1800_nvel0081.dat' % case_name
velocity_analysis = np.loadtxt(file_name)
u_inf = velocity_analysis[:, 0]
eigs_r = velocity_analysis[:, 1]
eigs_i = velocity_analysis[:, 2]
[19]:
fig = plt.figure()
plt.scatter(eigs_r, eigs_i, c=u_inf, cmap='Blues')
cbar = plt.colorbar()
cbar.set_label('Free Stream Velocity, $u_\infty$ [m/s]')
plt.grid()
plt.xlim(-10, 10)
plt.ylim(-150, 150)
plt.xlabel('Real Part, $\lambda$ [rad/s]')
plt.ylabel('Imag Part, $\lambda$ [rad/s]');

[20]:
fig = plt.figure()
natural_frequency = np.sqrt(eigs_r ** 2 + eigs_i ** 2)
damping_ratio = eigs_r / natural_frequency
cond = (eigs_r>-25) * (eigs_r<10) * (natural_frequency<100) # filter unwanted eigenvalues for this plot (mostly aero modes)
plt.scatter(u_inf[cond], damping_ratio[cond], color='k', marker='s', s=9)
plt.grid()
plt.ylim(-0.25, 0.25)
plt.xlabel('Free Stream Velocity, $u_\infty$ [m/s]')
plt.ylabel('Damping Ratio, $\zeta$ [-]');

[21]:
fig = plt.figure()
cond = (eigs_r>-25) * (eigs_r<10) # filter unwanted eigenvalues for this plot (mostly aero modes)
plt.scatter(u_inf[cond], natural_frequency[cond], color='k', marker='s', s=9)
plt.grid()
plt.ylim(40, 100)
plt.xlabel('Free Stream Velocity, $u_\infty$ [m/s]')
plt.ylabel('Natural Frequency, $\omega_n$ [rad/s]');

[1]:
%load_ext autoreload
%autoreload 2
%matplotlib inline
%config InlineBackend.figure_format = 'svg'
import numpy as np
import matplotlib.pyplot as plt
from IPython.display import Image
T-Tail HALE Model tutorial¶
The HALE T-Tail model intends to be a representative example of a typical HALE configuration, with high flexibility and aspect-ratio.
A geometry outline and a summary of the beam properties are given next
[2]:
url = 'https://raw.githubusercontent.com/ImperialCollegeLondon/sharpy/dev_doc/docs/source/content/example_notebooks/images/t-tail_geometry.png'
Image(url=url, width=800)
[2]:

[3]:
url = 'https://raw.githubusercontent.com/ImperialCollegeLondon/sharpy/dev_doc/docs/source/content/example_notebooks/images/t-tail_properties.png'
Image(url=url, width=500)
[3]:

This case is included in tests/coupled/simple_HALE/
. The generate_hale.py
file in that folder is the one that, if executed, generates all the required SHARPy files. This document is a step by step guide to how to process that case.
The T-Tail HALE model is subject to a 20% 1-cos spanwise constant gust.
First, let’s start with importing SHARPy in our Python environment.
[4]:
import sharpy
import sharpy.sharpy_main as sharpy_main
And now the generate_HALE.py
file needs to be executed.
[5]:
route_to_case = '../../../../cases/coupled/simple_HALE/'
%run '../../../../cases/coupled/simple_HALE/generate_hale.py'
There should be 3 new files, apart from the original generate_hale.py
:
[6]:
!ls ../../../../cases/coupled/simple_HALE/
generate_hale.py simple_HALE.aero.h5 simple_HALE.sharpy
output simple_HALE.fem.h5
SHARPy can be run now. In the terminal, doing cd
to the simple_HALE
folder, the command would look like:
sharpy simple_HALE.sharpy
From a python console with import sharpy
already run, the command is:
[7]:
case_data = sharpy_main.main(['', route_to_case + 'simple_HALE.sharpy'])
--------------------------------------------------------------------------------
###### ## ## ### ######## ######## ## ##
## ## ## ## ## ## ## ## ## ## ## ##
## ## ## ## ## ## ## ## ## ####
###### ######### ## ## ######## ######## ##
## ## ## ######### ## ## ## ##
## ## ## ## ## ## ## ## ## ##
###### ## ## ## ## ## ## ## ##
--------------------------------------------------------------------------------
Aeroelastics Lab, Aeronautics Department.
Copyright (c), Imperial College London.
All rights reserved.
License available at https://github.com/imperialcollegelondon/sharpy
Running SHARPy from /home/ng213/2TB/pazy_code/pazy-sharpy/lib/sharpy/docs/source/content/example_notebooks
SHARPy being run is in /home/ng213/2TB/pazy_code/pazy-sharpy/lib/sharpy
The branch being run is dev_setting_error
The version and commit hash are: v1.2.1-348-g402e87e-402e87e
SHARPy output folder set
/home/ng213/2TB/pazy_code/pazy-sharpy/lib/sharpy/cases/coupled/simple_HALE//output//simple_HALE/
Generating an instance of BeamLoader
Variable for_pos has no assigned value in the settings file.
will default to the value: [0.0, 0, 0]
Generating an instance of AerogridLoader
Variable control_surface_deflection has no assigned value in the settings file.
will default to the value: []
Variable control_surface_deflection_generator_settings has no assigned value in the settings file.
will default to the value: {}
Variable dx1 has no assigned value in the settings file.
will default to the value: -1.0
Variable ndx1 has no assigned value in the settings file.
will default to the value: 1
Variable r has no assigned value in the settings file.
will default to the value: 1.0
Variable dxmax has no assigned value in the settings file.
will default to the value: -1.0
The aerodynamic grid contains 5 surfaces
Surface 0, M=4, N=16
Wake 0, M=20, N=16
Surface 1, M=4, N=16
Wake 1, M=20, N=16
Surface 2, M=4, N=8
Wake 2, M=20, N=8
Surface 3, M=4, N=8
Wake 3, M=20, N=8
Surface 4, M=4, N=8
Wake 4, M=20, N=8
In total: 224 bound panels
In total: 1120 wake panels
Total number of panels = 1344
Generating an instance of StaticTrim
Variable print_info has no assigned value in the settings file.
will default to the value: True
Variable max_iter has no assigned value in the settings file.
will default to the value: 100
Variable fz_tolerance has no assigned value in the settings file.
will default to the value: 0.01
Variable fx_tolerance has no assigned value in the settings file.
will default to the value: 0.01
Variable m_tolerance has no assigned value in the settings file.
will default to the value: 0.01
Variable tail_cs_index has no assigned value in the settings file.
will default to the value: 0
Variable thrust_nodes has no assigned value in the settings file.
will default to the value: [0]
Variable initial_angle_eps has no assigned value in the settings file.
will default to the value: 0.05
Variable initial_thrust_eps has no assigned value in the settings file.
will default to the value: 2.0
Variable relaxation_factor has no assigned value in the settings file.
will default to the value: 0.2
Variable save_info has no assigned value in the settings file.
will default to the value: False
Generating an instance of StaticCoupled
Variable correct_forces_method has no assigned value in the settings file.
will default to the value:
Variable runtime_generators has no assigned value in the settings file.
will default to the value: {}
Generating an instance of NonLinearStatic
Variable newmark_damp has no assigned value in the settings file.
will default to the value: 0.0001
Variable gravity_dir has no assigned value in the settings file.
will default to the value: [0.0, 0.0, 1.0]
Variable relaxation_factor has no assigned value in the settings file.
will default to the value: 0.3
Variable dt has no assigned value in the settings file.
will default to the value: 0.01
Variable num_steps has no assigned value in the settings file.
will default to the value: 500
Variable initial_position has no assigned value in the settings file.
will default to the value: [0. 0. 0.]
Generating an instance of StaticUvlm
Variable iterative_solver has no assigned value in the settings file.
will default to the value: False
Variable iterative_tol has no assigned value in the settings file.
will default to the value: 0.0001
Variable iterative_precond has no assigned value in the settings file.
will default to the value: False
Variable cfl1 has no assigned value in the settings file.
will default to the value: True
Variable vortex_radius has no assigned value in the settings file.
will default to the value: 1e-06
Variable vortex_radius_wake_ind has no assigned value in the settings file.
will default to the value: 1e-06
Variable rbm_vel_g has no assigned value in the settings file.
will default to the value: [0.0, 0.0, 0.0, 0.0, 0.0, 0.0]
Variable centre_rot_g has no assigned value in the settings file.
will default to the value: [0.0, 0.0, 0.0]
|==========|==========|==========|==========|==========|==========|==========|==========|==========|==========|
| iter |alpha[deg]|elev[deg] | thrust | Fx | Fy | Fz | Mx | My | Mz |
|==========|==========|==========|==========|==========|==========|==========|==========|==========|==========|
| 0 | 4.3100 | -2.0800 | 6.1600 | -0.3600 | -0.0000 | 0.8010 | 0.0000 | -0.6935 | 0.0000 |
| 0 | 7.1748 | -4.9448 | 6.1600 | -27.8570 | -0.0000 | 280.1530 | 0.0000 |-105.5351 | 0.0000 |
| 0 | 4.3100 | 0.7848 | 6.1600 | -2.4506 | -0.0000 | 38.7819 | 0.0000 |-377.3661 | -0.0000 |
| 0 | 4.3100 | -2.0800 | 8.1600 | -2.3600 | -0.0000 | 0.8010 | 0.0000 | -0.6935 | 0.0000 |
| 1 | 4.3018 | -2.0771 | 5.8000 | 0.0660 | 0.0000 | -0.2782 | -0.0000 | 0.2446 | 0.0000 |
| 2 | 4.3039 | -2.0778 | 5.8558 | -0.0068 | -0.0000 | 0.0003 | 0.0000 | 0.0008 | 0.0000 |
Generating an instance of BeamLoads
Variable output_file_name has no assigned value in the settings file.
will default to the value: beam_loads
Generating an instance of AerogridPlot
Variable include_unsteady_applied_forces has no assigned value in the settings file.
will default to the value: False
Variable name_prefix has no assigned value in the settings file.
will default to the value:
Variable include_velocities has no assigned value in the settings file.
will default to the value: False
Variable include_incidence_angle has no assigned value in the settings file.
will default to the value: False
Variable num_cores has no assigned value in the settings file.
will default to the value: 1
Variable vortex_radius has no assigned value in the settings file.
will default to the value: 1e-06
...Finished
Generating an instance of BeamPlot
Variable include_FoR has no assigned value in the settings file.
will default to the value: False
Variable include_applied_moments has no assigned value in the settings file.
will default to the value: True
Variable name_prefix has no assigned value in the settings file.
will default to the value:
Variable output_rbm has no assigned value in the settings file.
will default to the value: True
...Finished
Generating an instance of DynamicCoupled
Variable print_info has no assigned value in the settings file.
will default to the value: True
Variable structural_substeps has no assigned value in the settings file.
will default to the value: 0
Variable dynamic_relaxation has no assigned value in the settings file.
will default to the value: False
Variable controller_id has no assigned value in the settings file.
will default to the value: {}
Variable controller_settings has no assigned value in the settings file.
will default to the value: {}
Variable cleanup_previous_solution has no assigned value in the settings file.
will default to the value: False
Variable steps_without_unsteady_force has no assigned value in the settings file.
will default to the value: 0
Variable pseudosteps_ramp_unsteady_force has no assigned value in the settings file.
will default to the value: 0
Variable correct_forces_method has no assigned value in the settings file.
will default to the value:
Variable network_settings has no assigned value in the settings file.
will default to the value: {}
Variable runtime_generators has no assigned value in the settings file.
will default to the value: {}
Generating an instance of NonLinearDynamicCoupledStep
Variable num_load_steps has no assigned value in the settings file.
will default to the value: 1
Variable gravity_dir has no assigned value in the settings file.
will default to the value: [0.0, 0.0, 1.0]
Variable relaxation_factor has no assigned value in the settings file.
will default to the value: 0.3
Variable balancing has no assigned value in the settings file.
will default to the value: False
Variable initial_velocity_direction has no assigned value in the settings file.
will default to the value: [-1.0, 0.0, 0.0]
Generating an instance of StepUvlm
Variable iterative_solver has no assigned value in the settings file.
will default to the value: False
Variable iterative_tol has no assigned value in the settings file.
will default to the value: 0.0001
Variable iterative_precond has no assigned value in the settings file.
will default to the value: False
Variable cfl1 has no assigned value in the settings file.
will default to the value: True
Variable vortex_radius has no assigned value in the settings file.
will default to the value: 1e-06
Variable vortex_radius_wake_ind has no assigned value in the settings file.
will default to the value: 1e-06
Variable interp_coords has no assigned value in the settings file.
will default to the value: 0
Variable filter_method has no assigned value in the settings file.
will default to the value: 0
Variable interp_method has no assigned value in the settings file.
will default to the value: 0
Variable yaw_slerp has no assigned value in the settings file.
will default to the value: 0.0
Variable centre_rot has no assigned value in the settings file.
will default to the value: [0.0, 0.0, 0.0]
Variable quasi_steady has no assigned value in the settings file.
will default to the value: False
gamma_dot_filtering does not support even numbers.Changing 6 to 7
Generating an instance of BeamLoads
Variable output_file_name has no assigned value in the settings file.
will default to the value: beam_loads
Generating an instance of BeamPlot
Variable include_FoR has no assigned value in the settings file.
will default to the value: False
Variable include_applied_moments has no assigned value in the settings file.
will default to the value: True
Variable name_prefix has no assigned value in the settings file.
will default to the value:
Variable output_rbm has no assigned value in the settings file.
will default to the value: True
Generating an instance of AerogridPlot
Variable include_forward_motion has no assigned value in the settings file.
will default to the value: False
Variable include_unsteady_applied_forces has no assigned value in the settings file.
will default to the value: False
Variable name_prefix has no assigned value in the settings file.
will default to the value:
Variable u_inf has no assigned value in the settings file.
will default to the value: 0.0
Variable dt has no assigned value in the settings file.
will default to the value: 0.0
Variable include_velocities has no assigned value in the settings file.
will default to the value: False
Variable include_incidence_angle has no assigned value in the settings file.
will default to the value: False
Variable num_cores has no assigned value in the settings file.
will default to the value: 1
Variable vortex_radius has no assigned value in the settings file.
will default to the value: 1e-06
|=======|========|======|==============|==============|==============|==============|==============|
| ts | t | iter | struc ratio | iter time | residual vel | FoR_vel(x) | FoR_vel(z) |
|=======|========|======|==============|==============|==============|==============|==============|
/home/ng213/2TB/pazy_code/pazy-sharpy/lib/sharpy/sharpy/aero/utils/uvlmlib.py:264: RuntimeWarning: invalid value encountered in true_divide
flightconditions.uinf_direction = np.ctypeslib.as_ctypes(ts_info.u_ext[0][:, 0, 0]/flightconditions.uinf)
/home/ng213/2TB/pazy_code/pazy-sharpy/lib/sharpy/sharpy/aero/utils/uvlmlib.py:325: RuntimeWarning: invalid value encountered in true_divide
flightconditions.uinf_direction = np.ctypeslib.as_ctypes(ts_info.u_ext[0][:, 0, 0]/flightconditions.uinf)
| 1 | 0.0250 | 2 | 0.660158 | 0.788767 | -4.245993 |-9.971789e+00 |-7.504783e-01 |
| 2 | 0.0500 | 3 | 0.698975 | 0.965136 | -4.635143 |-9.971745e+00 |-7.505379e-01 |
| 3 | 0.0750 | 2 | 0.699509 | 0.744684 | -4.142638 |-9.971678e+00 |-7.506741e-01 |
| 4 | 0.1000 | 2 | 0.702553 | 0.742001 | -4.583042 |-9.971654e+00 |-7.508442e-01 |
| 5 | 0.1250 | 1 | 0.705584 | 0.512845 | -4.384776 |-9.971729e+00 |-7.509873e-01 |
| 6 | 0.1500 | 2 | 0.710967 | 0.733027 | -4.729199 |-9.971808e+00 |-7.510934e-01 |
| 7 | 0.1750 | 1 | 0.717295 | 0.511901 | -4.049012 |-9.971749e+00 |-7.511575e-01 |
| 8 | 0.2000 | 1 | 0.687752 | 0.519393 | -4.147149 |-9.971609e+00 |-7.511620e-01 |
| 9 | 0.2250 | 1 | 0.657027 | 0.533608 | -4.243231 |-9.971483e+00 |-7.511461e-01 |
| 10 | 0.2500 | 1 | 0.650443 | 0.540742 | -4.352169 |-9.971378e+00 |-7.511644e-01 |
| 11 | 0.2750 | 1 | 0.656218 | 0.534101 | -4.191190 |-9.971371e+00 |-7.511728e-01 |
| 12 | 0.3000 | 1 | 0.671768 | 0.554114 | -4.122823 |-9.971442e+00 |-7.511539e-01 |
| 13 | 0.3250 | 1 | 0.656158 | 0.537498 | -4.418002 |-9.971429e+00 |-7.511300e-01 |
| 14 | 0.3500 | 1 | 0.704366 | 0.508580 | -4.678378 |-9.971349e+00 |-7.510900e-01 |
| 15 | 0.3750 | 1 | 0.719952 | 0.514705 | -4.402185 |-9.971299e+00 |-7.510668e-01 |
| 16 | 0.4000 | 1 | 0.705019 | 0.512428 | -4.448460 |-9.971290e+00 |-7.510571e-01 |
| 17 | 0.4250 | 1 | 0.713898 | 0.511336 | -4.476767 |-9.971358e+00 |-7.510533e-01 |
| 18 | 0.4500 | 1 | 0.715516 | 0.511316 | -4.534268 |-9.971488e+00 |-7.510753e-01 |
| 19 | 0.4750 | 1 | 0.709680 | 0.508300 | -4.662816 |-9.971575e+00 |-7.510784e-01 |
| 20 | 0.5000 | 2 | 0.704182 | 0.744397 | -4.812376 |-9.971586e+00 |-7.510241e-01 |
| 21 | 0.5250 | 3 | 0.708522 | 0.965943 | -4.402757 |-9.971726e+00 |-7.507397e-01 |
| 22 | 0.5500 | 4 | 0.708365 | 1.200794 | -4.475885 |-9.972374e+00 |-7.497152e-01 |
| 23 | 0.5750 | 4 | 0.708962 | 1.199187 | -4.264700 |-9.973956e+00 |-7.471042e-01 |
| 24 | 0.6000 | 4 | 0.709056 | 1.201371 | -4.148547 |-9.977005e+00 |-7.417512e-01 |
| 25 | 0.6250 | 4 | 0.707360 | 1.214448 | -4.101431 |-9.982064e+00 |-7.323149e-01 |
| 26 | 0.6500 | 4 | 0.707825 | 1.211973 | -4.083226 |-9.989506e+00 |-7.173484e-01 |
| 27 | 0.6750 | 4 | 0.705636 | 1.209574 | -4.081045 |-9.999533e+00 |-6.954412e-01 |
| 28 | 0.7000 | 4 | 0.702970 | 1.199970 | -4.095091 |-1.001216e+01 |-6.653667e-01 |
| 29 | 0.7250 | 4 | 0.705531 | 1.206136 | -4.120431 |-1.002734e+01 |-6.261403e-01 |
| 30 | 0.7500 | 4 | 0.702935 | 1.213436 | -4.153507 |-1.004515e+01 |-5.771350e-01 |
| 31 | 0.7750 | 4 | 0.698230 | 1.203890 | -4.194909 |-1.006573e+01 |-5.180671e-01 |
| 32 | 0.8000 | 4 | 0.703664 | 1.208508 | -4.236529 |-1.008907e+01 |-4.489843e-01 |
| 33 | 0.8250 | 4 | 0.701559 | 1.203176 | -4.281618 |-1.011502e+01 |-3.702984e-01 |
| 34 | 0.8500 | 4 | 0.700114 | 1.215140 | -4.272027 |-1.014323e+01 |-2.827796e-01 |
| 35 | 0.8750 | 4 | 0.701394 | 1.206869 | -4.137638 |-1.017318e+01 |-1.875441e-01 |
| 36 | 0.9000 | 4 | 0.698019 | 1.213434 | -4.087979 |-1.020434e+01 |-8.606667e-02 |
| 37 | 0.9250 | 4 | 0.697820 | 1.213205 | -4.081173 |-1.023614e+01 | 1.986601e-02 |
| 38 | 0.9500 | 4 | 0.692925 | 1.210431 | -4.067952 |-1.026798e+01 | 1.282642e-01 |
| 39 | 0.9750 | 4 | 0.692719 | 1.203242 | -4.040392 |-1.029913e+01 | 2.371167e-01 |
| 40 | 1.0000 | 4 | 0.695089 | 1.205393 | -4.023531 |-1.032875e+01 | 3.445071e-01 |
| 41 | 1.0250 | 5 | 0.696443 | 1.438348 | -4.548408 |-1.035594e+01 | 4.482817e-01 |
| 42 | 1.0500 | 5 | 0.699286 | 1.456647 | -4.496733 |-1.037989e+01 | 5.458046e-01 |
| 43 | 1.0750 | 5 | 0.693181 | 1.451422 | -4.426046 |-1.040006e+01 | 6.342879e-01 |
| 44 | 1.1000 | 5 | 0.672004 | 1.475300 | -4.379701 |-1.041606e+01 | 7.112695e-01 |
| 45 | 1.1250 | 5 | 0.672251 | 1.468131 | -4.402469 |-1.042753e+01 | 7.747229e-01 |
| 46 | 1.1500 | 5 | 0.689079 | 1.445732 | -4.477108 |-1.043429e+01 | 8.230013e-01 |
| 47 | 1.1750 | 5 | 0.690835 | 1.446807 | -4.548994 |-1.043627e+01 | 8.549797e-01 |
| 48 | 1.2000 | 5 | 0.692859 | 1.458130 | -4.602614 |-1.043347e+01 | 8.701306e-01 |
| 49 | 1.2250 | 5 | 0.692201 | 1.450715 | -4.670662 |-1.042601e+01 | 8.683187e-01 |
| 50 | 1.2500 | 4 | 0.692043 | 1.211332 | -4.009458 |-1.041409e+01 | 8.498052e-01 |
| 51 | 1.2750 | 5 | 0.691406 | 1.450458 | -4.437774 |-1.039785e+01 | 8.153184e-01 |
| 52 | 1.3000 | 5 | 0.690078 | 1.456433 | -4.400817 |-1.037756e+01 | 7.658481e-01 |
| 53 | 1.3250 | 5 | 0.642589 | 1.516374 | -4.491993 |-1.035352e+01 | 7.027470e-01 |
| 54 | 1.3500 | 5 | 0.636213 | 1.529562 | -4.660919 |-1.032602e+01 | 6.277602e-01 |
| 55 | 1.3750 | 4 | 0.654913 | 1.257229 | -4.127066 |-1.029540e+01 | 5.429281e-01 |
| 56 | 1.4000 | 4 | 0.690183 | 1.213338 | -4.180862 |-1.026211e+01 | 4.504884e-01 |
| 57 | 1.4250 | 4 | 0.690784 | 1.220024 | -4.119756 |-1.022658e+01 | 3.526569e-01 |
| 58 | 1.4500 | 4 | 0.693190 | 1.230164 | -4.115756 |-1.018920e+01 | 2.516427e-01 |
| 59 | 1.4750 | 4 | 0.689614 | 1.227466 | -4.089544 |-1.015042e+01 | 1.494680e-01 |
| 60 | 1.5000 | 4 | 0.686766 | 1.221660 | -4.073221 |-1.011070e+01 | 4.789509e-02 |
| 61 | 1.5250 | 4 | 0.688439 | 1.225181 | -4.065044 |-1.007052e+01 |-5.142849e-02 |
| 62 | 1.5500 | 4 | 0.686541 | 1.221131 | -4.066648 |-1.003034e+01 |-1.468432e-01 |
| 63 | 1.5750 | 4 | 0.649074 | 1.269069 | -4.116776 |-9.990515e+00 |-2.367221e-01 |
| 64 | 1.6000 | 4 | 0.634231 | 1.298771 | -4.232749 |-9.951260e+00 |-3.197660e-01 |
| 65 | 1.6250 | 4 | 0.631620 | 1.295939 | -4.346372 |-9.912713e+00 |-3.949816e-01 |
| 66 | 1.6500 | 4 | 0.676708 | 1.241231 | -4.462283 |-9.875008e+00 |-4.616848e-01 |
| 67 | 1.6750 | 4 | 0.690826 | 1.236500 | -4.536211 |-9.838289e+00 |-5.194903e-01 |
| 68 | 1.7000 | 4 | 0.685831 | 1.222472 | -4.557395 |-9.802717e+00 |-5.683337e-01 |
| 69 | 1.7250 | 4 | 0.683209 | 1.225972 | -4.514445 |-9.768493e+00 |-6.084703e-01 |
| 70 | 1.7500 | 4 | 0.681402 | 1.219586 | -4.515767 |-9.735644e+00 |-6.403299e-01 |
| 71 | 1.7750 | 4 | 0.679701 | 1.241776 | -4.561782 |-9.704041e+00 |-6.644313e-01 |
| 72 | 1.8000 | 4 | 0.687585 | 1.233221 | -4.576978 |-9.673585e+00 |-6.813177e-01 |
| 73 | 1.8250 | 3 | 0.685128 | 0.992525 | -4.085489 |-9.644153e+00 |-6.916357e-01 |
| 74 | 1.8500 | 3 | 0.630406 | 1.081735 | -4.228827 |-9.615525e+00 |-6.960345e-01 |
| 75 | 1.8750 | 3 | 0.633953 | 1.068277 | -4.281040 |-9.587600e+00 |-6.952011e-01 |
| 76 | 1.9000 | 3 | 0.631463 | 1.060051 | -4.298619 |-9.560401e+00 |-6.899257e-01 |
| 77 | 1.9250 | 3 | 0.641269 | 1.076329 | -4.263283 |-9.533905e+00 |-6.810428e-01 |
| 78 | 1.9500 | 3 | 0.632168 | 1.056881 | -4.172553 |-9.508183e+00 |-6.694250e-01 |
| 79 | 1.9750 | 3 | 0.644723 | 1.078860 | -4.087294 |-9.483448e+00 |-6.559401e-01 |
| 80 | 2.0000 | 3 | 0.629024 | 1.058206 | -4.017983 |-9.459903e+00 |-6.414764e-01 |
| 81 | 2.0250 | 4 | 0.641541 | 1.337528 | -4.489993 |-9.437808e+00 |-6.269365e-01 |
| 82 | 2.0500 | 4 | 0.628707 | 1.310679 | -4.470211 |-9.417538e+00 |-6.131778e-01 |
| 83 | 2.0750 | 4 | 0.628663 | 1.307533 | -4.453642 |-9.399441e+00 |-6.009539e-01 |
| 84 | 2.1000 | 4 | 0.631778 | 1.301269 | -4.451153 |-9.383802e+00 |-5.909513e-01 |
| 85 | 2.1250 | 4 | 0.629938 | 1.308679 | -4.454054 |-9.370919e+00 |-5.837527e-01 |
| 86 | 2.1500 | 4 | 0.630758 | 1.309061 | -4.489244 |-9.361058e+00 |-5.798117e-01 |
| 87 | 2.1750 | 4 | 0.630606 | 1.308830 | -4.529495 |-9.354357e+00 |-5.794602e-01 |
| 88 | 2.2000 | 4 | 0.629895 | 1.306216 | -4.555062 |-9.350910e+00 |-5.828920e-01 |
| 89 | 2.2250 | 4 | 0.627658 | 1.299544 | -4.583501 |-9.350758e+00 |-5.901807e-01 |
| 90 | 2.2500 | 4 | 0.631380 | 1.304904 | -4.577435 |-9.353747e+00 |-6.012367e-01 |
| 91 | 2.2750 | 3 | 0.632640 | 1.049719 | -4.015225 |-9.359659e+00 |-6.158432e-01 |
| 92 | 2.3000 | 3 | 0.677727 | 0.998599 | -4.029324 |-9.368239e+00 |-6.336696e-01 |
| 93 | 2.3250 | 3 | 0.681171 | 0.994001 | -4.027658 |-9.379037e+00 |-6.542748e-01 |
| 94 | 2.3500 | 3 | 0.681259 | 0.989943 | -4.032139 |-9.391519e+00 |-6.771019e-01 |
| 95 | 2.3750 | 3 | 0.662018 | 1.012158 | -4.018542 |-9.405213e+00 |-7.015133e-01 |
| 96 | 2.4000 | 4 | 0.649296 | 1.280039 | -4.507534 |-9.419633e+00 |-7.269046e-01 |
| 97 | 2.4250 | 4 | 0.643727 | 1.278447 | -4.486197 |-9.434238e+00 |-7.525958e-01 |
| 98 | 2.4500 | 4 | 0.626945 | 1.300289 | -4.469752 |-9.448552e+00 |-7.778583e-01 |
| 99 | 2.4750 | 4 | 0.630502 | 1.316456 | -4.479896 |-9.462111e+00 |-8.020210e-01 |
| 100 | 2.5000 | 4 | 0.624389 | 1.310294 | -4.502345 |-9.474427e+00 |-8.243816e-01 |
| 101 | 2.5250 | 4 | 0.631037 | 1.315843 | -4.533404 |-9.485161e+00 |-8.442818e-01 |
| 102 | 2.5500 | 4 | 0.644611 | 1.283856 | -4.554463 |-9.494088e+00 |-8.611748e-01 |
| 103 | 2.5750 | 4 | 0.680174 | 1.237591 | -4.579594 |-9.501053e+00 |-8.746547e-01 |
| 104 | 2.6000 | 4 | 0.680077 | 1.236782 | -4.596771 |-9.506032e+00 |-8.844994e-01 |
| 105 | 2.6250 | 4 | 0.675584 | 1.232872 | -4.484950 |-9.509125e+00 |-8.907008e-01 |
| 106 | 2.6500 | 4 | 0.678916 | 1.235079 | -4.463714 |-9.510468e+00 |-8.934511e-01 |
| 107 | 2.6750 | 4 | 0.677563 | 1.234071 | -4.381520 |-9.510274e+00 |-8.931021e-01 |
| 108 | 2.7000 | 4 | 0.674451 | 1.246872 | -4.443680 |-9.508969e+00 |-8.901755e-01 |
| 109 | 2.7250 | 4 | 0.680008 | 1.243277 | -4.646030 |-9.507028e+00 |-8.852282e-01 |
| 110 | 2.7500 | 3 | 0.687824 | 1.013889 | -4.095041 |-9.504803e+00 |-8.787479e-01 |
| 111 | 2.7750 | 3 | 0.678555 | 1.000272 | -4.324971 |-9.502690e+00 |-8.711948e-01 |
| 112 | 2.8000 | 3 | 0.629410 | 1.056518 | -4.391682 |-9.501123e+00 |-8.630844e-01 |
| 113 | 2.8250 | 3 | 0.631289 | 1.061790 | -4.405523 |-9.500417e+00 |-8.548953e-01 |
| 114 | 2.8500 | 3 | 0.623451 | 1.061574 | -4.405133 |-9.500842e+00 |-8.469691e-01 |
| 115 | 2.8750 | 3 | 0.629521 | 1.063894 | -4.364937 |-9.502651e+00 |-8.395888e-01 |
| 116 | 2.9000 | 3 | 0.625789 | 1.052592 | -4.333192 |-9.505900e+00 |-8.329495e-01 |
| 117 | 2.9250 | 3 | 0.634558 | 1.059645 | -4.287009 |-9.510496e+00 |-8.271466e-01 |
| 118 | 2.9500 | 3 | 0.676550 | 1.015943 | -4.245942 |-9.516385e+00 |-8.222099e-01 |
| 119 | 2.9750 | 3 | 0.680614 | 1.002676 | -4.205825 |-9.523418e+00 |-8.181140e-01 |
| 120 | 3.0000 | 3 | 0.682271 | 1.006870 | -4.188187 |-9.531318e+00 |-8.148053e-01 |
| 121 | 3.0250 | 3 | 0.680266 | 0.996102 | -4.232299 |-9.539814e+00 |-8.121677e-01 |
| 122 | 3.0500 | 3 | 0.681732 | 0.999955 | -4.231690 |-9.548602e+00 |-8.100300e-01 |
| 123 | 3.0750 | 3 | 0.682858 | 1.010936 | -4.279188 |-9.557348e+00 |-8.082342e-01 |
| 124 | 3.1000 | 3 | 0.681190 | 1.009030 | -4.271080 |-9.565764e+00 |-8.066818e-01 |
| 125 | 3.1250 | 3 | 0.683038 | 1.007188 | -4.392752 |-9.573620e+00 |-8.052156e-01 |
| 126 | 3.1500 | 3 | 0.678701 | 1.000200 | -4.449904 |-9.580739e+00 |-8.036619e-01 |
| 127 | 3.1750 | 2 | 0.676607 | 0.762312 | -4.000854 |-9.587007e+00 |-8.019792e-01 |
| 128 | 3.2000 | 3 | 0.676056 | 1.006674 | -4.538007 |-9.592408e+00 |-8.001705e-01 |
| 129 | 3.2250 | 3 | 0.675263 | 1.005720 | -4.547103 |-9.596953e+00 |-7.981922e-01 |
| 130 | 3.2500 | 3 | 0.676868 | 1.006415 | -4.525018 |-9.600665e+00 |-7.960410e-01 |
| 131 | 3.2750 | 3 | 0.675184 | 1.010851 | -4.506300 |-9.603640e+00 |-7.937587e-01 |
| 132 | 3.3000 | 3 | 0.672328 | 1.002885 | -4.509537 |-9.606035e+00 |-7.913608e-01 |
| 133 | 3.3250 | 3 | 0.671273 | 1.006276 | -4.517757 |-9.608054e+00 |-7.889411e-01 |
| 134 | 3.3500 | 2 | 0.667902 | 0.767805 | -4.004169 |-9.609914e+00 |-7.866119e-01 |
| 135 | 3.3750 | 2 | 0.672012 | 0.762166 | -4.037206 |-9.611796e+00 |-7.844475e-01 |
| 136 | 3.4000 | 2 | 0.674040 | 0.766492 | -4.091199 |-9.613836e+00 |-7.825251e-01 |
| 137 | 3.4250 | 2 | 0.677833 | 0.764682 | -4.161763 |-9.616142e+00 |-7.808889e-01 |
| 138 | 3.4500 | 2 | 0.678520 | 0.772371 | -4.208416 |-9.618837e+00 |-7.795641e-01 |
| 139 | 3.4750 | 2 | 0.675557 | 0.769200 | -4.185191 |-9.622012e+00 |-7.786017e-01 |
| 140 | 3.5000 | 2 | 0.658891 | 0.777941 | -4.143336 |-9.625717e+00 |-7.780201e-01 |
| 141 | 3.5250 | 2 | 0.670239 | 0.764967 | -4.111505 |-9.629952e+00 |-7.777878e-01 |
| 142 | 3.5500 | 2 | 0.675294 | 0.780672 | -4.095589 |-9.634644e+00 |-7.778791e-01 |
| 143 | 3.5750 | 2 | 0.674070 | 0.768821 | -4.089987 |-9.639706e+00 |-7.782389e-01 |
| 144 | 3.6000 | 2 | 0.675235 | 0.770859 | -4.092880 |-9.645044e+00 |-7.787973e-01 |
| 145 | 3.6250 | 2 | 0.667235 | 0.766770 | -4.113065 |-9.650579e+00 |-7.794970e-01 |
| 146 | 3.6500 | 2 | 0.664948 | 0.775005 | -4.162262 |-9.656221e+00 |-7.802848e-01 |
| 147 | 3.6750 | 2 | 0.669905 | 0.778505 | -4.233073 |-9.661859e+00 |-7.810839e-01 |
| 148 | 3.7000 | 2 | 0.673135 | 0.772653 | -4.300425 |-9.667393e+00 |-7.818259e-01 |
| 149 | 3.7250 | 2 | 0.668814 | 0.767011 | -4.341062 |-9.672713e+00 |-7.824584e-01 |
| 150 | 3.7500 | 2 | 0.667366 | 0.768942 | -4.347827 |-9.677758e+00 |-7.829222e-01 |
| 151 | 3.7750 | 2 | 0.671508 | 0.768175 | -4.340552 |-9.682512e+00 |-7.832059e-01 |
| 152 | 3.8000 | 2 | 0.657508 | 0.783694 | -4.331623 |-9.686971e+00 |-7.832953e-01 |
| 153 | 3.8250 | 2 | 0.672415 | 0.768370 | -4.316722 |-9.691148e+00 |-7.831777e-01 |
| 154 | 3.8500 | 2 | 0.677129 | 0.779227 | -4.299262 |-9.695058e+00 |-7.828747e-01 |
| 155 | 3.8750 | 2 | 0.673584 | 0.770337 | -4.305853 |-9.698731e+00 |-7.823999e-01 |
| 156 | 3.9000 | 2 | 0.665485 | 0.772028 | -4.334291 |-9.702215e+00 |-7.817778e-01 |
| 157 | 3.9250 | 2 | 0.666994 | 0.776969 | -4.377407 |-9.705587e+00 |-7.810551e-01 |
| 158 | 3.9500 | 2 | 0.665925 | 0.780606 | -4.439104 |-9.708933e+00 |-7.802775e-01 |
| 159 | 3.9750 | 2 | 0.670904 | 0.771282 | -4.498475 |-9.712316e+00 |-7.794772e-01 |
| 160 | 4.0000 | 1 | 0.671639 | 0.530210 | -4.008078 |-9.715787e+00 |-7.786931e-01 |
| 161 | 4.0250 | 1 | 0.670327 | 0.533749 | -4.092355 |-9.719380e+00 |-7.779506e-01 |
| 162 | 4.0500 | 1 | 0.668751 | 0.537579 | -4.156978 |-9.723116e+00 |-7.772698e-01 |
| 163 | 4.0750 | 1 | 0.663677 | 0.531485 | -4.072783 |-9.727029e+00 |-7.766788e-01 |
| 164 | 4.1000 | 2 | 0.666350 | 0.773267 | -4.569537 |-9.731146e+00 |-7.761920e-01 |
| 165 | 4.1250 | 2 | 0.682839 | 0.788505 | -4.570174 |-9.735472e+00 |-7.758138e-01 |
| 166 | 4.1500 | 2 | 0.620765 | 0.812113 | -4.549853 |-9.739981e+00 |-7.755403e-01 |
| 167 | 4.1750 | 2 | 0.618753 | 0.825905 | -4.537868 |-9.744625e+00 |-7.753472e-01 |
| 168 | 4.2000 | 2 | 0.618510 | 0.819368 | -4.524976 |-9.749356e+00 |-7.752100e-01 |
| 169 | 4.2250 | 2 | 0.613543 | 0.817032 | -4.515910 |-9.754134e+00 |-7.751152e-01 |
| 170 | 4.2500 | 2 | 0.614536 | 0.814042 | -4.538699 |-9.758943e+00 |-7.750408e-01 |
| 171 | 4.2750 | 1 | 0.625472 | 0.574294 | -4.020787 |-9.763759e+00 |-7.749700e-01 |
| 172 | 4.3000 | 1 | 0.608604 | 0.560485 | -4.061045 |-9.768537e+00 |-7.748838e-01 |
| 173 | 4.3250 | 1 | 0.613070 | 0.563931 | -4.121220 |-9.773242e+00 |-7.747597e-01 |
| 174 | 4.3500 | 1 | 0.642887 | 0.551584 | -4.110854 |-9.777831e+00 |-7.745740e-01 |
| 175 | 4.3750 | 1 | 0.666433 | 0.534772 | -4.088306 |-9.782291e+00 |-7.743221e-01 |
| 176 | 4.4000 | 1 | 0.673361 | 0.543510 | -4.077439 |-9.786631e+00 |-7.740007e-01 |
| 177 | 4.4250 | 1 | 0.675407 | 0.545999 | -4.085008 |-9.790868e+00 |-7.736116e-01 |
| 178 | 4.4500 | 1 | 0.663487 | 0.537923 | -4.084174 |-9.795016e+00 |-7.731651e-01 |
| 179 | 4.4750 | 1 | 0.656179 | 0.541705 | -4.095747 |-9.799077e+00 |-7.726600e-01 |
| 180 | 4.5000 | 1 | 0.665239 | 0.538480 | -4.143039 |-9.803063e+00 |-7.721067e-01 |
| 181 | 4.5250 | 1 | 0.671591 | 0.542443 | -4.219653 |-9.806995e+00 |-7.715207e-01 |
| 182 | 4.5500 | 1 | 0.663922 | 0.536485 | -4.324315 |-9.810904e+00 |-7.709163e-01 |
| 183 | 4.5750 | 1 | 0.657884 | 0.540013 | -4.462694 |-9.814833e+00 |-7.703121e-01 |
| 184 | 4.6000 | 1 | 0.664151 | 0.536879 | -4.555594 |-9.818801e+00 |-7.697261e-01 |
| 185 | 4.6250 | 1 | 0.664279 | 0.534583 | -4.636689 |-9.822816e+00 |-7.691634e-01 |
| 186 | 4.6500 | 1 | 0.663570 | 0.535142 | -4.623202 |-9.826877e+00 |-7.686317e-01 |
| 187 | 4.6750 | 1 | 0.654862 | 0.535068 | -4.465982 |-9.830990e+00 |-7.681383e-01 |
| 188 | 4.7000 | 1 | 0.664028 | 0.540949 | -4.338112 |-9.835165e+00 |-7.676893e-01 |
| 189 | 4.7250 | 1 | 0.663004 | 0.538335 | -4.294846 |-9.839409e+00 |-7.672874e-01 |
| 190 | 4.7500 | 1 | 0.661509 | 0.535572 | -4.283904 |-9.843723e+00 |-7.669317e-01 |
| 191 | 4.7750 | 1 | 0.667410 | 0.544977 | -4.289664 |-9.848084e+00 |-7.666140e-01 |
| 192 | 4.8000 | 1 | 0.631005 | 0.557035 | -4.285048 |-9.852468e+00 |-7.663236e-01 |
| 193 | 4.8250 | 1 | 0.655634 | 0.543174 | -4.249586 |-9.856861e+00 |-7.660553e-01 |
| 194 | 4.8500 | 1 | 0.663471 | 0.540511 | -4.240242 |-9.861248e+00 |-7.657973e-01 |
| 195 | 4.8750 | 1 | 0.663061 | 0.537256 | -4.279527 |-9.865630e+00 |-7.655457e-01 |
| 196 | 4.9000 | 1 | 0.666065 | 0.559327 | -4.341423 |-9.869997e+00 |-7.652934e-01 |
| 197 | 4.9250 | 1 | 0.655532 | 0.540197 | -4.389727 |-9.874334e+00 |-7.650274e-01 |
| 198 | 4.9500 | 1 | 0.653665 | 0.536703 | -4.392163 |-9.878621e+00 |-7.647419e-01 |
| 199 | 4.9750 | 1 | 0.643891 | 0.551159 | -4.356375 |-9.882848e+00 |-7.644317e-01 |
| 200 | 5.0000 | 1 | 0.658182 | 0.536739 | -4.357632 |-9.887023e+00 |-7.640960e-01 |
| 201 | 5.0250 | 1 | 0.666568 | 0.547456 | -4.374468 |-9.891152e+00 |-7.637354e-01 |
| 202 | 5.0500 | 1 | 0.690858 | 0.576716 | -4.405701 |-9.895246e+00 |-7.633546e-01 |
| 203 | 5.0750 | 1 | 0.648976 | 0.543039 | -4.457054 |-9.899310e+00 |-7.629532e-01 |
| 204 | 5.1000 | 1 | 0.645745 | 0.541463 | -4.487556 |-9.903338e+00 |-7.625328e-01 |
| 205 | 5.1250 | 1 | 0.591463 | 0.597350 | -4.532516 |-9.907334e+00 |-7.620999e-01 |
| 206 | 5.1500 | 1 | 0.602864 | 0.567360 | -4.584225 |-9.911313e+00 |-7.616581e-01 |
| 207 | 5.1750 | 1 | 0.607332 | 0.564882 | -4.653390 |-9.915290e+00 |-7.612183e-01 |
| 208 | 5.2000 | 1 | 0.617578 | 0.575872 | -4.738979 |-9.919278e+00 |-7.607846e-01 |
| 209 | 5.2250 | 1 | 0.608336 | 0.568334 | -4.813565 |-9.923281e+00 |-7.603606e-01 |
| 210 | 5.2500 | 1 | 0.608519 | 0.571894 | -4.767231 |-9.927295e+00 |-7.599484e-01 |
| 211 | 5.2750 | 1 | 0.611513 | 0.573648 | -4.664724 |-9.931315e+00 |-7.595504e-01 |
| 212 | 5.3000 | 1 | 0.663295 | 0.546204 | -4.542805 |-9.935346e+00 |-7.591674e-01 |
| 213 | 5.3250 | 1 | 0.653387 | 0.540858 | -4.498708 |-9.939397e+00 |-7.588020e-01 |
| 214 | 5.3500 | 1 | 0.651487 | 0.537849 | -4.514320 |-9.943465e+00 |-7.584560e-01 |
| 215 | 5.3750 | 1 | 0.662014 | 0.545498 | -4.531746 |-9.947549e+00 |-7.581246e-01 |
| 216 | 5.4000 | 1 | 0.650294 | 0.540917 | -4.526842 |-9.951634e+00 |-7.578047e-01 |
| 217 | 5.4250 | 1 | 0.653085 | 0.536544 | -4.480060 |-9.955710e+00 |-7.574922e-01 |
| 218 | 5.4500 | 1 | 0.661230 | 0.548448 | -4.442806 |-9.959772e+00 |-7.571838e-01 |
| 219 | 5.4750 | 1 | 0.655229 | 0.543616 | -4.442100 |-9.963823e+00 |-7.568782e-01 |
| 220 | 5.5000 | 1 | 0.655222 | 0.546932 | -4.480309 |-9.967864e+00 |-7.565737e-01 |
| 221 | 5.5250 | 1 | 0.650105 | 0.542159 | -4.527770 |-9.971886e+00 |-7.562652e-01 |
| 222 | 5.5500 | 1 | 0.651475 | 0.537507 | -4.542362 |-9.975885e+00 |-7.559507e-01 |
| 223 | 5.5750 | 1 | 0.659401 | 0.547510 | -4.506293 |-9.979850e+00 |-7.556271e-01 |
| 224 | 5.6000 | 1 | 0.601784 | 0.569276 | -4.504088 |-9.983780e+00 |-7.552935e-01 |
| 225 | 5.6250 | 1 | 0.623897 | 0.557574 | -4.512552 |-9.987687e+00 |-7.549518e-01 |
| 226 | 5.6500 | 1 | 0.600244 | 0.569273 | -4.550006 |-9.991573e+00 |-7.546024e-01 |
| 227 | 5.6750 | 1 | 0.624355 | 0.556274 | -4.608499 |-9.995440e+00 |-7.542473e-01 |
| 228 | 5.7000 | 1 | 0.660840 | 0.555257 | -4.628774 |-9.999287e+00 |-7.538857e-01 |
| 229 | 5.7250 | 1 | 0.648993 | 0.540272 | -4.638629 |-1.000311e+01 |-7.535194e-01 |
| 230 | 5.7500 | 1 | 0.649691 | 0.542594 | -4.620373 |-1.000691e+01 |-7.531502e-01 |
| 231 | 5.7750 | 1 | 0.654206 | 0.542916 | -4.623969 |-1.001071e+01 |-7.527814e-01 |
| 232 | 5.8000 | 1 | 0.651407 | 0.541567 | -4.658962 |-1.001450e+01 |-7.524169e-01 |
| 233 | 5.8250 | 1 | 0.634053 | 0.546768 | -4.709952 |-1.001828e+01 |-7.520571e-01 |
| 234 | 5.8500 | 1 | 0.649142 | 0.540074 | -4.711982 |-1.002206e+01 |-7.517035e-01 |
| 235 | 5.8750 | 1 | 0.651331 | 0.541255 | -4.674097 |-1.002584e+01 |-7.513553e-01 |
| 236 | 5.9000 | 1 | 0.650602 | 0.540557 | -4.609681 |-1.002960e+01 |-7.510131e-01 |
| 237 | 5.9250 | 1 | 0.625181 | 0.556794 | -4.572926 |-1.003336e+01 |-7.506790e-01 |
| 238 | 5.9500 | 1 | 0.598372 | 0.577537 | -4.593342 |-1.003712e+01 |-7.503529e-01 |
| 239 | 5.9750 | 1 | 0.597025 | 0.572500 | -4.606399 |-1.004088e+01 |-7.500343e-01 |
| 240 | 6.0000 | 1 | 0.597859 | 0.576480 | -4.633256 |-1.004462e+01 |-7.497216e-01 |
| 241 | 6.0250 | 1 | 0.598875 | 0.573635 | -4.596024 |-1.004836e+01 |-7.494121e-01 |
| 242 | 6.0500 | 1 | 0.597534 | 0.573711 | -4.557101 |-1.005207e+01 |-7.491049e-01 |
| 243 | 6.0750 | 1 | 0.615834 | 0.560475 | -4.544709 |-1.005577e+01 |-7.487993e-01 |
| 244 | 6.1000 | 1 | 0.645833 | 0.545940 | -4.560556 |-1.005945e+01 |-7.484956e-01 |
| 245 | 6.1250 | 1 | 0.641262 | 0.550605 | -4.599376 |-1.006312e+01 |-7.481921e-01 |
| 246 | 6.1500 | 1 | 0.650546 | 0.543172 | -4.621850 |-1.006677e+01 |-7.478876e-01 |
| 247 | 6.1750 | 1 | 0.650686 | 0.547601 | -4.613310 |-1.007040e+01 |-7.475803e-01 |
| 248 | 6.2000 | 1 | 0.643572 | 0.551210 | -4.588594 |-1.007400e+01 |-7.472693e-01 |
| 249 | 6.2250 | 1 | 0.643333 | 0.539960 | -4.585553 |-1.007758e+01 |-7.469564e-01 |
| 250 | 6.2500 | 1 | 0.631976 | 0.548090 | -4.600869 |-1.008114e+01 |-7.466414e-01 |
| 251 | 6.2750 | 1 | 0.647855 | 0.541747 | -4.650767 |-1.008469e+01 |-7.463261e-01 |
| 252 | 6.3000 | 1 | 0.649241 | 0.544522 | -4.672520 |-1.008821e+01 |-7.460094e-01 |
| 253 | 6.3250 | 1 | 0.643516 | 0.545110 | -4.673014 |-1.009172e+01 |-7.456916e-01 |
| 254 | 6.3500 | 1 | 0.638767 | 0.540989 | -4.653989 |-1.009520e+01 |-7.453734e-01 |
| 255 | 6.3750 | 1 | 0.631475 | 0.546431 | -4.631053 |-1.009867e+01 |-7.450557e-01 |
| 256 | 6.4000 | 1 | 0.644038 | 0.541411 | -4.653231 |-1.010213e+01 |-7.447412e-01 |
| 257 | 6.4250 | 1 | 0.645015 | 0.541870 | -4.678113 |-1.010557e+01 |-7.444295e-01 |
| 258 | 6.4500 | 1 | 0.646439 | 0.544957 | -4.706046 |-1.010900e+01 |-7.441219e-01 |
| 259 | 6.4750 | 1 | 0.636618 | 0.544506 | -4.688480 |-1.011242e+01 |-7.438168e-01 |
| 260 | 6.5000 | 1 | 0.636472 | 0.544515 | -4.660864 |-1.011582e+01 |-7.435149e-01 |
| 261 | 6.5250 | 1 | 0.642801 | 0.547305 | -4.622978 |-1.011920e+01 |-7.432168e-01 |
| 262 | 6.5500 | 1 | 0.642521 | 0.549237 | -4.634656 |-1.012258e+01 |-7.429228e-01 |
| 263 | 6.5750 | 1 | 0.640326 | 0.546690 | -4.652540 |-1.012594e+01 |-7.426333e-01 |
| 264 | 6.6000 | 1 | 0.646080 | 0.569616 | -4.675082 |-1.012928e+01 |-7.423474e-01 |
| 265 | 6.6250 | 1 | 0.637068 | 0.545332 | -4.671475 |-1.013261e+01 |-7.420636e-01 |
| 266 | 6.6500 | 1 | 0.641454 | 0.542948 | -4.635937 |-1.013592e+01 |-7.417815e-01 |
| 267 | 6.6750 | 1 | 0.648429 | 0.563219 | -4.626090 |-1.013921e+01 |-7.415010e-01 |
| 268 | 6.7000 | 1 | 0.638889 | 0.546413 | -4.619397 |-1.014248e+01 |-7.412219e-01 |
| 269 | 6.7250 | 1 | 0.645476 | 0.551120 | -4.654354 |-1.014573e+01 |-7.409449e-01 |
| 270 | 6.7500 | 1 | 0.644807 | 0.553462 | -4.677256 |-1.014897e+01 |-7.406684e-01 |
| 271 | 6.7750 | 1 | 0.643342 | 0.545453 | -4.677941 |-1.015219e+01 |-7.403922e-01 |
| 272 | 6.8000 | 1 | 0.642737 | 0.554577 | -4.663328 |-1.015538e+01 |-7.401152e-01 |
| 273 | 6.8250 | 1 | 0.636924 | 0.547193 | -4.647117 |-1.015854e+01 |-7.398382e-01 |
| 274 | 6.8500 | 1 | 0.636881 | 0.549125 | -4.652275 |-1.016169e+01 |-7.395617e-01 |
| 275 | 6.8750 | 1 | 0.642097 | 0.546781 | -4.679255 |-1.016482e+01 |-7.392860e-01 |
| 276 | 6.9000 | 1 | 0.644362 | 0.546495 | -4.710093 |-1.016793e+01 |-7.390117e-01 |
| 277 | 6.9250 | 1 | 0.636971 | 0.552398 | -4.709777 |-1.017103e+01 |-7.387375e-01 |
| 278 | 6.9500 | 1 | 0.642068 | 0.550708 | -4.702989 |-1.017410e+01 |-7.384642e-01 |
| 279 | 6.9750 | 1 | 0.636245 | 0.548906 | -4.675771 |-1.017714e+01 |-7.381918e-01 |
| 280 | 7.0000 | 1 | 0.631892 | 0.553548 | -4.683037 |-1.018018e+01 |-7.379216e-01 |
| 281 | 7.0250 | 1 | 0.636876 | 0.548173 | -4.700304 |-1.018319e+01 |-7.376540e-01 |
| 282 | 7.0500 | 1 | 0.641117 | 0.548960 | -4.723800 |-1.018619e+01 |-7.373891e-01 |
| 283 | 7.0750 | 1 | 0.639323 | 0.547961 | -4.733571 |-1.018917e+01 |-7.371265e-01 |
| 284 | 7.1000 | 1 | 0.636166 | 0.555813 | -4.706688 |-1.019212e+01 |-7.368659e-01 |
| 285 | 7.1250 | 1 | 0.634238 | 0.555710 | -4.691827 |-1.019506e+01 |-7.366075e-01 |
| 286 | 7.1500 | 1 | 0.635902 | 0.551450 | -4.681559 |-1.019798e+01 |-7.363519e-01 |
| 287 | 7.1750 | 1 | 0.637927 | 0.565596 | -4.702253 |-1.020088e+01 |-7.360992e-01 |
| 288 | 7.2000 | 1 | 0.636154 | 0.548763 | -4.718294 |-1.020377e+01 |-7.358495e-01 |
| 289 | 7.2250 | 1 | 0.635841 | 0.549645 | -4.734186 |-1.020663e+01 |-7.356017e-01 |
| 290 | 7.2500 | 1 | 0.633560 | 0.553457 | -4.709277 |-1.020948e+01 |-7.353555e-01 |
| 291 | 7.2750 | 1 | 0.633063 | 0.551744 | -4.697645 |-1.021230e+01 |-7.351108e-01 |
| 292 | 7.3000 | 1 | 0.596012 | 0.573846 | -4.690652 |-1.021510e+01 |-7.348676e-01 |
| 293 | 7.3250 | 1 | 0.628225 | 0.550297 | -4.705748 |-1.021788e+01 |-7.346267e-01 |
| 294 | 7.3500 | 1 | 0.635229 | 0.558756 | -4.733700 |-1.022064e+01 |-7.343873e-01 |
| 295 | 7.3750 | 1 | 0.633064 | 0.553635 | -4.738990 |-1.022338e+01 |-7.341492e-01 |
| 296 | 7.4000 | 1 | 0.636859 | 0.550407 | -4.735953 |-1.022610e+01 |-7.339119e-01 |
| 297 | 7.4250 | 1 | 0.623950 | 0.565263 | -4.716011 |-1.022879e+01 |-7.336753e-01 |
| 298 | 7.4500 | 1 | 0.642621 | 0.555373 | -4.714487 |-1.023146e+01 |-7.334401e-01 |
| 299 | 7.4750 | 1 | 0.631974 | 0.548812 | -4.730516 |-1.023411e+01 |-7.332063e-01 |
| 300 | 7.5000 | 1 | 0.635308 | 0.557555 | -4.753499 |-1.023674e+01 |-7.329746e-01 |
| 301 | 7.5250 | 1 | 0.629950 | 0.550125 | -4.765495 |-1.023935e+01 |-7.327439e-01 |
| 302 | 7.5500 | 1 | 0.615770 | 0.560338 | -4.762381 |-1.024194e+01 |-7.325148e-01 |
| 303 | 7.5750 | 1 | 0.584256 | 0.590264 | -4.742845 |-1.024450e+01 |-7.322869e-01 |
| 304 | 7.6000 | 1 | 0.582597 | 0.587076 | -4.737265 |-1.024704e+01 |-7.320607e-01 |
| 305 | 7.6250 | 1 | 0.584283 | 0.579482 | -4.752925 |-1.024956e+01 |-7.318370e-01 |
| 306 | 7.6500 | 1 | 0.586216 | 0.584941 | -4.767222 |-1.025207e+01 |-7.316154e-01 |
| 307 | 7.6750 | 1 | 0.585430 | 0.579851 | -4.787773 |-1.025455e+01 |-7.313962e-01 |
| 308 | 7.7000 | 1 | 0.631306 | 0.551397 | -4.774572 |-1.025701e+01 |-7.311787e-01 |
| 309 | 7.7250 | 1 | 0.634317 | 0.553543 | -4.762915 |-1.025944e+01 |-7.309630e-01 |
| 310 | 7.7500 | 1 | 0.636891 | 0.556693 | -4.750823 |-1.026186e+01 |-7.307494e-01 |
| 311 | 7.7750 | 1 | 0.639769 | 0.563616 | -4.761181 |-1.026425e+01 |-7.305383e-01 |
| 312 | 7.8000 | 1 | 0.631767 | 0.554912 | -4.781589 |-1.026663e+01 |-7.303294e-01 |
| 313 | 7.8250 | 1 | 0.634194 | 0.558768 | -4.793059 |-1.026898e+01 |-7.301229e-01 |
| 314 | 7.8500 | 1 | 0.626796 | 0.556363 | -4.791256 |-1.027131e+01 |-7.299178e-01 |
| 315 | 7.8750 | 1 | 0.625787 | 0.550935 | -4.775101 |-1.027361e+01 |-7.297145e-01 |
| 316 | 7.9000 | 1 | 0.631936 | 0.553434 | -4.770127 |-1.027590e+01 |-7.295127e-01 |
| 317 | 7.9250 | 1 | 0.632807 | 0.554769 | -4.771512 |-1.027816e+01 |-7.293129e-01 |
| 318 | 7.9500 | 1 | 0.636354 | 0.555106 | -4.801316 |-1.028040e+01 |-7.291153e-01 |
| 319 | 7.9750 | 1 | 0.651982 | 0.601691 | -4.806386 |-1.028262e+01 |-7.289192e-01 |
| 320 | 8.0000 | 1 | 0.642667 | 0.630753 | -4.813430 |-1.028481e+01 |-7.287248e-01 |
| 321 | 8.0250 | 1 | 0.638641 | 0.626061 | -4.798908 |-1.028698e+01 |-7.285314e-01 |
| 322 | 8.0500 | 1 | 0.627977 | 0.630209 | -4.790992 |-1.028913e+01 |-7.283397e-01 |
| 323 | 8.0750 | 1 | 0.615535 | 0.632846 | -4.799474 |-1.029125e+01 |-7.281498e-01 |
| 324 | 8.1000 | 1 | 0.628741 | 0.623770 | -4.816641 |-1.029336e+01 |-7.279618e-01 |
| 325 | 8.1250 | 1 | 0.646119 | 0.631292 | -4.835626 |-1.029544e+01 |-7.277758e-01 |
| 326 | 8.1500 | 1 | 0.635751 | 0.604086 | -4.834189 |-1.029750e+01 |-7.275912e-01 |
| 327 | 8.1750 | 1 | 0.635591 | 0.596375 | -4.826611 |-1.029953e+01 |-7.274083e-01 |
| 328 | 8.2000 | 1 | 0.654686 | 0.625780 | -4.815149 |-1.030154e+01 |-7.272270e-01 |
| 329 | 8.2250 | 1 | 0.631972 | 0.593750 | -4.822991 |-1.030353e+01 |-7.270479e-01 |
| 330 | 8.2500 | 1 | 0.627881 | 0.594475 | -4.835602 |-1.030549e+01 |-7.268709e-01 |
| 331 | 8.2750 | 1 | 0.632779 | 0.588022 | -4.856780 |-1.030744e+01 |-7.266960e-01 |
| 332 | 8.3000 | 1 | 0.623576 | 0.572123 | -4.856935 |-1.030936e+01 |-7.265231e-01 |
| 333 | 8.3250 | 1 | 0.616926 | 0.572569 | -4.844436 |-1.031125e+01 |-7.263517e-01 |
| 334 | 8.3500 | 1 | 0.656718 | 0.615642 | -4.841857 |-1.031313e+01 |-7.261824e-01 |
| 335 | 8.3750 | 1 | 0.647848 | 0.593447 | -4.836181 |-1.031498e+01 |-7.260150e-01 |
| 336 | 8.4000 | 1 | 0.620897 | 0.556400 | -4.858940 |-1.031681e+01 |-7.258500e-01 |
| 337 | 8.4250 | 1 | 0.636878 | 0.568918 | -4.870038 |-1.031861e+01 |-7.256870e-01 |
| 338 | 8.4500 | 1 | 0.624409 | 0.560472 | -4.878751 |-1.032040e+01 |-7.255258e-01 |
| 339 | 8.4750 | 1 | 0.626291 | 0.560779 | -4.866752 |-1.032216e+01 |-7.253663e-01 |
| 340 | 8.5000 | 1 | 0.624523 | 0.557208 | -4.860873 |-1.032389e+01 |-7.252085e-01 |
| 341 | 8.5250 | 1 | 0.621932 | 0.557273 | -4.861571 |-1.032560e+01 |-7.250526e-01 |
| 342 | 8.5500 | 1 | 0.620140 | 0.558312 | -4.876236 |-1.032729e+01 |-7.248988e-01 |
| 343 | 8.5750 | 1 | 0.618488 | 0.558703 | -4.894443 |-1.032896e+01 |-7.247469e-01 |
| 344 | 8.6000 | 1 | 0.614675 | 0.555611 | -4.898885 |-1.033060e+01 |-7.245967e-01 |
| 345 | 8.6250 | 1 | 0.608933 | 0.564743 | -4.897533 |-1.033222e+01 |-7.244482e-01 |
| 346 | 8.6500 | 1 | 0.577061 | 0.585133 | -4.881841 |-1.033381e+01 |-7.243012e-01 |
| 347 | 8.6750 | 1 | 0.608953 | 0.587979 | -4.892088 |-1.033539e+01 |-7.241562e-01 |
| 348 | 8.7000 | 1 | 0.624541 | 0.558283 | -4.899079 |-1.033693e+01 |-7.240130e-01 |
| 349 | 8.7250 | 1 | 0.625952 | 0.557111 | -4.918737 |-1.033846e+01 |-7.238720e-01 |
| 350 | 8.7500 | 1 | 0.623287 | 0.557909 | -4.928123 |-1.033996e+01 |-7.237327e-01 |
| 351 | 8.7750 | 1 | 0.622417 | 0.555740 | -4.921486 |-1.034144e+01 |-7.235950e-01 |
| 352 | 8.8000 | 1 | 0.621352 | 0.554043 | -4.914257 |-1.034289e+01 |-7.234592e-01 |
| 353 | 8.8250 | 1 | 0.625442 | 0.559248 | -4.914487 |-1.034432e+01 |-7.233251e-01 |
| 354 | 8.8500 | 1 | 0.621001 | 0.554895 | -4.927093 |-1.034573e+01 |-7.231933e-01 |
| 355 | 8.8750 | 1 | 0.616331 | 0.556795 | -4.942194 |-1.034711e+01 |-7.230634e-01 |
| 356 | 8.9000 | 1 | 0.620400 | 0.561975 | -4.953444 |-1.034848e+01 |-7.229356e-01 |
| 357 | 8.9250 | 1 | 0.617789 | 0.557966 | -4.948106 |-1.034981e+01 |-7.228093e-01 |
| 358 | 8.9500 | 1 | 0.617529 | 0.559993 | -4.942308 |-1.035113e+01 |-7.226850e-01 |
| 359 | 8.9750 | 1 | 0.618381 | 0.557392 | -4.938375 |-1.035241e+01 |-7.225625e-01 |
| 360 | 9.0000 | 1 | 0.615879 | 0.559019 | -4.952078 |-1.035368e+01 |-7.224422e-01 |
| 361 | 9.0250 | 1 | 0.619261 | 0.558077 | -4.968153 |-1.035492e+01 |-7.223238e-01 |
| 362 | 9.0500 | 1 | 0.620542 | 0.558342 | -4.974721 |-1.035614e+01 |-7.222074e-01 |
| 363 | 9.0750 | 1 | 0.620811 | 0.562190 | -4.979177 |-1.035734e+01 |-7.220928e-01 |
| 364 | 9.1000 | 1 | 0.621215 | 0.561517 | -4.966813 |-1.035851e+01 |-7.219798e-01 |
| 365 | 9.1250 | 1 | 0.619293 | 0.556963 | -4.968124 |-1.035966e+01 |-7.218687e-01 |
| 366 | 9.1500 | 1 | 0.617414 | 0.560206 | -4.976628 |-1.036079e+01 |-7.217596e-01 |
| 367 | 9.1750 | 1 | 0.617224 | 0.560026 | -4.995733 |-1.036189e+01 |-7.216525e-01 |
| 368 | 9.2000 | 1 | 0.594361 | 0.572718 | -5.002079 |-1.036297e+01 |-7.215472e-01 |
| 369 | 9.2250 | 1 | 0.591752 | 0.620408 | -5.007823 |-1.036402e+01 |-7.214437e-01 |
| 370 | 9.2500 | 1 | 0.573933 | 0.595363 | -4.998087 |-1.036505e+01 |-7.213418e-01 |
| 371 | 9.2750 | 1 | 0.574780 | 0.599225 | -4.997593 |-1.036606e+01 |-7.212418e-01 |
| 372 | 9.3000 | 1 | 0.573589 | 0.590403 | -5.006758 |-1.036704e+01 |-7.211437e-01 |
| 373 | 9.3250 | 1 | 0.609827 | 0.562178 | -5.021476 |-1.036800e+01 |-7.210476e-01 |
| 374 | 9.3500 | 1 | 0.614184 | 0.559384 | -5.036294 |-1.036894e+01 |-7.209533e-01 |
| 375 | 9.3750 | 1 | 0.613003 | 0.559421 | -5.033179 |-1.036985e+01 |-7.208608e-01 |
| 376 | 9.4000 | 1 | 0.615698 | 0.562315 | -5.033218 |-1.037074e+01 |-7.207701e-01 |
| 377 | 9.4250 | 1 | 0.614765 | 0.561798 | -5.027569 |-1.037161e+01 |-7.206811e-01 |
| 378 | 9.4500 | 1 | 0.617829 | 0.560943 | -5.035541 |-1.037245e+01 |-7.205942e-01 |
| 379 | 9.4750 | 1 | 0.618720 | 0.564336 | -5.051179 |-1.037327e+01 |-7.205092e-01 |
| 380 | 9.5000 | 1 | 0.612249 | 0.559879 | -5.064730 |-1.037407e+01 |-7.204262e-01 |
| 381 | 9.5250 | 1 | 0.616751 | 0.558819 | -5.064004 |-1.037484e+01 |-7.203449e-01 |
| 382 | 9.5500 | 1 | 0.609852 | 0.562424 | -5.062977 |-1.037559e+01 |-7.202654e-01 |
| 383 | 9.5750 | 1 | 0.610932 | 0.561283 | -5.059836 |-1.037632e+01 |-7.201877e-01 |
| 384 | 9.6000 | 1 | 0.609683 | 0.559666 | -5.063394 |-1.037702e+01 |-7.201119e-01 |
| 385 | 9.6250 | 1 | 0.614492 | 0.563530 | -5.081452 |-1.037770e+01 |-7.200382e-01 |
| 386 | 9.6500 | 1 | 0.606921 | 0.560035 | -5.090793 |-1.037835e+01 |-7.199663e-01 |
| 387 | 9.6750 | 1 | 0.614644 | 0.567031 | -5.097605 |-1.037899e+01 |-7.198962e-01 |
| 388 | 9.7000 | 1 | 0.584276 | 0.590999 | -5.091026 |-1.037960e+01 |-7.198278e-01 |
| 389 | 9.7250 | 1 | 0.567643 | 0.593811 | -5.091591 |-1.038018e+01 |-7.197613e-01 |
| 390 | 9.7500 | 1 | 0.567374 | 0.596893 | -5.095862 |-1.038075e+01 |-7.196965e-01 |
| 391 | 9.7750 | 1 | 0.572616 | 0.596802 | -5.106980 |-1.038129e+01 |-7.196338e-01 |
| 392 | 9.8000 | 1 | 0.570078 | 0.591577 | -5.123029 |-1.038181e+01 |-7.195729e-01 |
| 393 | 9.8250 | 1 | 0.568206 | 0.592200 | -5.126210 |-1.038230e+01 |-7.195138e-01 |
| 394 | 9.8500 | 1 | 0.571314 | 0.611958 | -5.123923 |-1.038277e+01 |-7.194564e-01 |
| 395 | 9.8750 | 1 | 0.567253 | 0.597897 | -5.121337 |-1.038322e+01 |-7.194006e-01 |
| 396 | 9.9000 | 1 | 0.568210 | 0.593683 | -5.128361 |-1.038365e+01 |-7.193469e-01 |
| 397 | 9.9250 | 1 | 0.565010 | 0.597851 | -5.135472 |-1.038405e+01 |-7.192949e-01 |
| 398 | 9.9500 | 1 | 0.607473 | 0.563262 | -5.151271 |-1.038443e+01 |-7.192449e-01 |
| 399 | 9.9750 | 1 | 0.611926 | 0.565768 | -5.156484 |-1.038479e+01 |-7.191966e-01 |
| 400 |10.0000 | 1 | 0.609614 | 0.566774 | -5.154040 |-1.038512e+01 |-7.191501e-01 |
| 401 |10.0250 | 1 | 0.609190 | 0.563351 | -5.151962 |-1.038543e+01 |-7.191053e-01 |
| 402 |10.0500 | 1 | 0.609842 | 0.560413 | -5.156639 |-1.038572e+01 |-7.190623e-01 |
| 403 |10.0750 | 1 | 0.608545 | 0.562862 | -5.165364 |-1.038599e+01 |-7.190212e-01 |
| 404 |10.1000 | 1 | 0.609280 | 0.574591 | -5.175709 |-1.038623e+01 |-7.189820e-01 |
| 405 |10.1250 | 1 | 0.606715 | 0.563175 | -5.184143 |-1.038645e+01 |-7.189446e-01 |
| 406 |10.1500 | 1 | 0.604479 | 0.564748 | -5.181991 |-1.038665e+01 |-7.189088e-01 |
| 407 |10.1750 | 1 | 0.606050 | 0.565112 | -5.179552 |-1.038683e+01 |-7.188749e-01 |
| 408 |10.2000 | 1 | 0.607161 | 0.564970 | -5.182516 |-1.038698e+01 |-7.188427e-01 |
| 409 |10.2250 | 1 | 0.611589 | 0.565026 | -5.191318 |-1.038711e+01 |-7.188124e-01 |
| 410 |10.2500 | 1 | 0.609824 | 0.564363 | -5.199527 |-1.038722e+01 |-7.187839e-01 |
| 411 |10.2750 | 1 | 0.608612 | 0.565428 | -5.204957 |-1.038731e+01 |-7.187572e-01 |
| 412 |10.3000 | 1 | 0.607257 | 0.561791 | -5.208673 |-1.038738e+01 |-7.187322e-01 |
| 413 |10.3250 | 1 | 0.609691 | 0.568279 | -5.201979 |-1.038742e+01 |-7.187089e-01 |
| 414 |10.3500 | 1 | 0.601743 | 0.568179 | -5.206076 |-1.038744e+01 |-7.186873e-01 |
| 415 |10.3750 | 1 | 0.601717 | 0.567023 | -5.212946 |-1.038744e+01 |-7.186677e-01 |
| 416 |10.4000 | 1 | 0.559912 | 0.595790 | -5.218419 |-1.038742e+01 |-7.186497e-01 |
| 417 |10.4250 | 1 | 0.564230 | 0.598142 | -5.224424 |-1.038737e+01 |-7.186336e-01 |
| 418 |10.4500 | 1 | 0.583181 | 0.581345 | -5.225489 |-1.038730e+01 |-7.186191e-01 |
| 419 |10.4750 | 1 | 0.602301 | 0.565017 | -5.224159 |-1.038721e+01 |-7.186063e-01 |
| 420 |10.5000 | 1 | 0.603593 | 0.566494 | -5.222729 |-1.038710e+01 |-7.185953e-01 |
| 421 |10.5250 | 1 | 0.601339 | 0.567735 | -5.228588 |-1.038697e+01 |-7.185860e-01 |
| 422 |10.5500 | 1 | 0.600440 | 0.570387 | -5.234701 |-1.038682e+01 |-7.185785e-01 |
| 423 |10.5750 | 1 | 0.578888 | 0.583202 | -5.234590 |-1.038664e+01 |-7.185728e-01 |
| 424 |10.6000 | 1 | 0.604815 | 0.565890 | -5.239249 |-1.038645e+01 |-7.185687e-01 |
| 425 |10.6250 | 1 | 0.604126 | 0.569152 | -5.236159 |-1.038623e+01 |-7.185663e-01 |
| 426 |10.6500 | 1 | 0.603547 | 0.566174 | -5.235546 |-1.038599e+01 |-7.185655e-01 |
| 427 |10.6750 | 1 | 0.602865 | 0.569464 | -5.237490 |-1.038573e+01 |-7.185666e-01 |
| 428 |10.7000 | 1 | 0.600635 | 0.568652 | -5.241270 |-1.038545e+01 |-7.185694e-01 |
| 429 |10.7250 | 1 | 0.605226 | 0.574795 | -5.242437 |-1.038514e+01 |-7.185739e-01 |
| 430 |10.7500 | 1 | 0.600788 | 0.571143 | -5.241394 |-1.038482e+01 |-7.185801e-01 |
| 431 |10.7750 | 1 | 0.577222 | 0.591226 | -5.242569 |-1.038448e+01 |-7.185880e-01 |
| 432 |10.8000 | 1 | 0.560620 | 0.597055 | -5.240958 |-1.038411e+01 |-7.185975e-01 |
| 433 |10.8250 | 1 | 0.556709 | 0.596082 | -5.238278 |-1.038372e+01 |-7.186087e-01 |
| 434 |10.8500 | 1 | 0.556684 | 0.597562 | -5.242316 |-1.038332e+01 |-7.186217e-01 |
| 435 |10.8750 | 1 | 0.559204 | 0.599864 | -5.240932 |-1.038289e+01 |-7.186363e-01 |
| 436 |10.9000 | 1 | 0.554305 | 0.620321 | -5.238040 |-1.038244e+01 |-7.186526e-01 |
| 437 |10.9250 | 1 | 0.577513 | 0.588008 | -5.241438 |-1.038197e+01 |-7.186705e-01 |
| 438 |10.9500 | 1 | 0.599971 | 0.568971 | -5.235789 |-1.038148e+01 |-7.186901e-01 |
| 439 |10.9750 | 1 | 0.599382 | 0.571610 | -5.237054 |-1.038097e+01 |-7.187113e-01 |
| 440 |11.0000 | 1 | 0.597518 | 0.569614 | -5.232763 |-1.038044e+01 |-7.187342e-01 |
| 441 |11.0250 | 1 | 0.603696 | 0.575074 | -5.233276 |-1.037989e+01 |-7.187588e-01 |
| 442 |11.0500 | 1 | 0.583094 | 0.697022 | -5.231065 |-1.037932e+01 |-7.187850e-01 |
| 443 |11.0750 | 1 | 0.619875 | 0.676204 | -5.227894 |-1.037873e+01 |-7.188128e-01 |
| 444 |11.1000 | 1 | 0.598458 | 0.604789 | -5.230200 |-1.037812e+01 |-7.188422e-01 |
| 445 |11.1250 | 1 | 0.604274 | 0.596907 | -5.223329 |-1.037749e+01 |-7.188732e-01 |
| 446 |11.1500 | 1 | 0.573906 | 0.610394 | -5.222229 |-1.037684e+01 |-7.189059e-01 |
| 447 |11.1750 | 1 | 0.561556 | 0.624831 | -5.217935 |-1.037617e+01 |-7.189403e-01 |
| 448 |11.2000 | 1 | 0.569148 | 0.626453 | -5.216896 |-1.037548e+01 |-7.189761e-01 |
| 449 |11.2250 | 1 | 0.564965 | 0.673984 | -5.213489 |-1.037477e+01 |-7.190136e-01 |
| 450 |11.2500 | 1 | 0.561458 | 0.614712 | -5.212846 |-1.037404e+01 |-7.190527e-01 |
| 451 |11.2750 | 1 | 0.573335 | 0.635211 | -5.209958 |-1.037329e+01 |-7.190933e-01 |
| 452 |11.3000 | 1 | 0.601036 | 0.589727 | -5.203174 |-1.037253e+01 |-7.191356e-01 |
| 453 |11.3250 | 1 | 0.588650 | 0.649352 | -5.201050 |-1.037174e+01 |-7.191795e-01 |
| 454 |11.3500 | 1 | 0.581506 | 0.609257 | -5.196793 |-1.037094e+01 |-7.192250e-01 |
| 455 |11.3750 | 1 | 0.589146 | 0.602935 | -5.195584 |-1.037011e+01 |-7.192719e-01 |
| 456 |11.4000 | 1 | 0.604540 | 0.602902 | -5.192228 |-1.036927e+01 |-7.193204e-01 |
| 457 |11.4250 | 1 | 0.600579 | 0.594754 | -5.191012 |-1.036841e+01 |-7.193705e-01 |
| 458 |11.4500 | 1 | 0.594932 | 0.585988 | -5.182644 |-1.036753e+01 |-7.194222e-01 |
| 459 |11.4750 | 1 | 0.594136 | 0.587465 | -5.180474 |-1.036663e+01 |-7.194754e-01 |
| 460 |11.5000 | 1 | 0.615072 | 0.617353 | -5.174101 |-1.036571e+01 |-7.195302e-01 |
| 461 |11.5250 | 1 | 0.580867 | 0.632210 | -5.174853 |-1.036478e+01 |-7.195865e-01 |
| 462 |11.5500 | 1 | 0.594978 | 0.646045 | -5.170050 |-1.036382e+01 |-7.196442e-01 |
| 463 |11.5750 | 1 | 0.578537 | 0.617545 | -5.167418 |-1.036285e+01 |-7.197035e-01 |
| 464 |11.6000 | 1 | 0.591423 | 0.656918 | -5.163354 |-1.036186e+01 |-7.197643e-01 |
| 465 |11.6250 | 1 | 0.596206 | 0.593319 | -5.154243 |-1.036085e+01 |-7.198267e-01 |
| 466 |11.6500 | 1 | 0.594452 | 0.615504 | -5.154289 |-1.035983e+01 |-7.198905e-01 |
| 467 |11.6750 | 1 | 0.585962 | 0.589556 | -5.148727 |-1.035878e+01 |-7.199559e-01 |
| 468 |11.7000 | 1 | 0.590704 | 0.592317 | -5.148438 |-1.035772e+01 |-7.200226e-01 |
| 469 |11.7250 | 1 | 0.588268 | 0.610512 | -5.143636 |-1.035664e+01 |-7.200909e-01 |
| 470 |11.7500 | 1 | 0.613000 | 0.604874 | -5.138982 |-1.035554e+01 |-7.201607e-01 |
| 471 |11.7750 | 1 | 0.597844 | 0.624120 | -5.133073 |-1.035443e+01 |-7.202319e-01 |
| 472 |11.8000 | 1 | 0.612249 | 0.607180 | -5.128111 |-1.035330e+01 |-7.203046e-01 |
| 473 |11.8250 | 1 | 0.589453 | 0.613552 | -5.126736 |-1.035215e+01 |-7.203787e-01 |
| 474 |11.8500 | 1 | 0.593775 | 0.611720 | -5.123366 |-1.035098e+01 |-7.204543e-01 |
| 475 |11.8750 | 1 | 0.589657 | 0.587944 | -5.120797 |-1.034980e+01 |-7.205313e-01 |
| 476 |11.9000 | 1 | 0.589097 | 0.606891 | -5.114568 |-1.034860e+01 |-7.206098e-01 |
| 477 |11.9250 | 1 | 0.587495 | 0.629681 | -5.110620 |-1.034739e+01 |-7.206897e-01 |
| 478 |11.9500 | 1 | 0.584468 | 0.608920 | -5.103850 |-1.034615e+01 |-7.207710e-01 |
| 479 |11.9750 | 1 | 0.590653 | 0.613406 | -5.103272 |-1.034491e+01 |-7.208537e-01 |
| 480 |12.0000 | 1 | 0.622715 | 0.666483 | -5.099819 |-1.034364e+01 |-7.209378e-01 |
| 481 |12.0250 | 1 | 0.604598 | 0.600735 | -5.096876 |-1.034236e+01 |-7.210233e-01 |
| 482 |12.0500 | 1 | 0.607466 | 0.600419 | -5.092345 |-1.034106e+01 |-7.211102e-01 |
| 483 |12.0750 | 1 | 0.611803 | 0.651007 | -5.086132 |-1.033975e+01 |-7.211985e-01 |
| 484 |12.1000 | 1 | 0.600163 | 0.604296 | -5.082930 |-1.033842e+01 |-7.212882e-01 |
| 485 |12.1250 | 1 | 0.597081 | 0.608633 | -5.078037 |-1.033707e+01 |-7.213792e-01 |
| 486 |12.1500 | 1 | 0.599493 | 0.694460 | -5.078534 |-1.033571e+01 |-7.214716e-01 |
| 487 |12.1750 | 1 | 0.569671 | 0.611804 | -5.072894 |-1.033433e+01 |-7.215653e-01 |
| 488 |12.2000 | 1 | 0.590231 | 0.592073 | -5.070548 |-1.033294e+01 |-7.216604e-01 |
| 489 |12.2250 | 1 | 0.586426 | 0.587308 | -5.063791 |-1.033153e+01 |-7.217569e-01 |
| 490 |12.2500 | 1 | 0.605616 | 0.639888 | -5.060453 |-1.033011e+01 |-7.218546e-01 |
| 491 |12.2750 | 1 | 0.601391 | 0.589785 | -5.056911 |-1.032867e+01 |-7.219537e-01 |
| 492 |12.3000 | 1 | 0.583376 | 0.588843 | -5.054795 |-1.032722e+01 |-7.220541e-01 |
| 493 |12.3250 | 1 | 0.591293 | 0.608539 | -5.052808 |-1.032575e+01 |-7.221558e-01 |
| 494 |12.3500 | 1 | 0.568992 | 0.595768 | -5.047491 |-1.032427e+01 |-7.222588e-01 |
| 495 |12.3750 | 1 | 0.563630 | 0.599818 | -5.043728 |-1.032277e+01 |-7.223631e-01 |
| 496 |12.4000 | 1 | 0.583918 | 0.582994 | -5.038711 |-1.032126e+01 |-7.224687e-01 |
| 497 |12.4250 | 1 | 0.587738 | 0.584071 | -5.036205 |-1.031973e+01 |-7.225755e-01 |
| 498 |12.4500 | 1 | 0.575600 | 0.588839 | -5.033715 |-1.031819e+01 |-7.226837e-01 |
| 499 |12.4750 | 1 | 0.586772 | 0.589606 | -5.031815 |-1.031664e+01 |-7.227930e-01 |
| 500 |12.5000 | 1 | 0.577898 | 0.602334 | -5.027416 |-1.031507e+01 |-7.229037e-01 |
| 501 |12.5250 | 1 | 0.585324 | 0.589641 | -5.023384 |-1.031348e+01 |-7.230155e-01 |
| 502 |12.5500 | 1 | 0.585512 | 0.584594 | -5.019042 |-1.031189e+01 |-7.231287e-01 |
| 503 |12.5750 | 1 | 0.583865 | 0.582880 | -5.016063 |-1.031028e+01 |-7.232430e-01 |
| 504 |12.6000 | 1 | 0.588496 | 0.592948 | -5.014501 |-1.030865e+01 |-7.233586e-01 |
| 505 |12.6250 | 1 | 0.587081 | 0.593772 | -5.011221 |-1.030702e+01 |-7.234753e-01 |
| 506 |12.6500 | 1 | 0.585744 | 0.587407 | -5.009390 |-1.030537e+01 |-7.235933e-01 |
| 507 |12.6750 | 1 | 0.584881 | 0.596360 | -5.003415 |-1.030370e+01 |-7.237125e-01 |
| 508 |12.7000 | 1 | 0.596729 | 0.591525 | -5.001095 |-1.030203e+01 |-7.238329e-01 |
| 509 |12.7250 | 1 | 0.596917 | 0.597681 | -4.997208 |-1.030034e+01 |-7.239544e-01 |
| 510 |12.7500 | 1 | 0.591709 | 0.586425 | -4.995682 |-1.029863e+01 |-7.240771e-01 |
| 511 |12.7750 | 1 | 0.587641 | 0.591100 | -4.993524 |-1.029692e+01 |-7.242010e-01 |
| 512 |12.8000 | 1 | 0.587204 | 0.586659 | -4.990360 |-1.029519e+01 |-7.243260e-01 |
| 513 |12.8250 | 1 | 0.591092 | 0.587204 | -4.986833 |-1.029345e+01 |-7.244521e-01 |
| 514 |12.8500 | 1 | 0.585463 | 0.583301 | -4.982664 |-1.029170e+01 |-7.245795e-01 |
| 515 |12.8750 | 1 | 0.589045 | 0.586801 | -4.980566 |-1.028993e+01 |-7.247079e-01 |
| 516 |12.9000 | 1 | 0.596714 | 0.601805 | -4.977829 |-1.028816e+01 |-7.248374e-01 |
| 517 |12.9250 | 1 | 0.584486 | 0.594004 | -4.976834 |-1.028637e+01 |-7.249680e-01 |
| 518 |12.9500 | 1 | 0.577005 | 0.592874 | -4.973053 |-1.028457e+01 |-7.250998e-01 |
| 519 |12.9750 | 1 | 0.576873 | 0.590686 | -4.970798 |-1.028276e+01 |-7.252326e-01 |
| 520 |13.0000 | 1 | 0.588123 | 0.584250 | -4.966119 |-1.028094e+01 |-7.253666e-01 |
| 521 |13.0250 | 1 | 0.588080 | 0.592052 | -4.964473 |-1.027910e+01 |-7.255016e-01 |
| 522 |13.0500 | 1 | 0.586211 | 0.588701 | -4.961953 |-1.027726e+01 |-7.256376e-01 |
| 523 |13.0750 | 1 | 0.582357 | 0.595669 | -4.960468 |-1.027540e+01 |-7.257747e-01 |
| 524 |13.1000 | 1 | 0.569600 | 0.594107 | -4.958069 |-1.027353e+01 |-7.259128e-01 |
| 525 |13.1250 | 1 | 0.575376 | 0.594160 | -4.954661 |-1.027165e+01 |-7.260521e-01 |
| 526 |13.1500 | 1 | 0.578324 | 0.588696 | -4.952012 |-1.026976e+01 |-7.261923e-01 |
| 527 |13.1750 | 1 | 0.587095 | 0.592266 | -4.948571 |-1.026786e+01 |-7.263335e-01 |
| 528 |13.2000 | 1 | 0.569050 | 0.599524 | -4.947926 |-1.026595e+01 |-7.264758e-01 |
| 529 |13.2250 | 1 | 0.542086 | 0.614471 | -4.945114 |-1.026403e+01 |-7.266190e-01 |
| 530 |13.2500 | 1 | 0.540521 | 0.611883 | -4.943929 |-1.026210e+01 |-7.267632e-01 |
| 531 |13.2750 | 1 | 0.543265 | 0.621184 | -4.940566 |-1.026016e+01 |-7.269084e-01 |
| 532 |13.3000 | 1 | 0.541681 | 0.615142 | -4.937617 |-1.025821e+01 |-7.270546e-01 |
| 533 |13.3250 | 1 | 0.540352 | 0.616832 | -4.935709 |-1.025625e+01 |-7.272018e-01 |
| 534 |13.3500 | 1 | 0.544213 | 0.620769 | -4.933038 |-1.025428e+01 |-7.273499e-01 |
| 535 |13.3750 | 1 | 0.580695 | 0.590777 | -4.932776 |-1.025230e+01 |-7.274989e-01 |
| 536 |13.4000 | 1 | 0.575465 | 0.596223 | -4.929595 |-1.025031e+01 |-7.276489e-01 |
| 537 |13.4250 | 1 | 0.542536 | 0.618744 | -4.928176 |-1.024831e+01 |-7.277998e-01 |
| 538 |13.4500 | 1 | 0.580911 | 0.591514 | -4.924586 |-1.024631e+01 |-7.279516e-01 |
| 539 |13.4750 | 1 | 0.581108 | 0.591034 | -4.922988 |-1.024429e+01 |-7.281044e-01 |
| 540 |13.5000 | 1 | 0.545993 | 0.614974 | -4.920767 |-1.024227e+01 |-7.282580e-01 |
| 541 |13.5250 | 1 | 0.545921 | 0.615012 | -4.919915 |-1.024023e+01 |-7.284125e-01 |
| 542 |13.5500 | 1 | 0.542495 | 0.613665 | -4.917870 |-1.023819e+01 |-7.285679e-01 |
| 543 |13.5750 | 1 | 0.536964 | 0.622532 | -4.915675 |-1.023614e+01 |-7.287241e-01 |
| 544 |13.6000 | 1 | 0.554106 | 0.603419 | -4.913529 |-1.023408e+01 |-7.288812e-01 |
| 545 |13.6250 | 1 | 0.578840 | 0.604562 | -4.910680 |-1.023202e+01 |-7.290392e-01 |
| 546 |13.6500 | 1 | 0.585058 | 0.606280 | -4.910137 |-1.022994e+01 |-7.291979e-01 |
| 547 |13.6750 | 1 | 0.579318 | 0.591994 | -4.907749 |-1.022786e+01 |-7.293575e-01 |
| 548 |13.7000 | 1 | 0.580380 | 0.589279 | -4.907371 |-1.022577e+01 |-7.295179e-01 |
| 549 |13.7250 | 1 | 0.584794 | 0.591958 | -4.904445 |-1.022367e+01 |-7.296792e-01 |
| 550 |13.7500 | 1 | 0.588687 | 0.601052 | -4.902856 |-1.022157e+01 |-7.298412e-01 |
| 551 |13.7750 | 1 | 0.579102 | 0.595429 | -4.900526 |-1.021945e+01 |-7.300040e-01 |
| 552 |13.8000 | 1 | 0.579922 | 0.596135 | -4.899156 |-1.021733e+01 |-7.301676e-01 |
| 553 |13.8250 | 1 | 0.579598 | 0.597193 | -4.898152 |-1.021521e+01 |-7.303320e-01 |
| 554 |13.8500 | 1 | 0.589419 | 0.608047 | -4.896538 |-1.021307e+01 |-7.304971e-01 |
| 555 |13.8750 | 1 | 0.584321 | 0.601955 | -4.895262 |-1.021093e+01 |-7.306629e-01 |
| 556 |13.9000 | 1 | 0.579038 | 0.593430 | -4.892631 |-1.020879e+01 |-7.308295e-01 |
| 557 |13.9250 | 1 | 0.577858 | 0.591474 | -4.891491 |-1.020663e+01 |-7.309968e-01 |
| 558 |13.9500 | 1 | 0.578370 | 0.601104 | -4.889505 |-1.020447e+01 |-7.311649e-01 |
| 559 |13.9750 | 1 | 0.574518 | 0.594961 | -4.888943 |-1.020231e+01 |-7.313336e-01 |
| 560 |14.0000 | 1 | 0.578717 | 0.588370 | -4.887586 |-1.020014e+01 |-7.315030e-01 |
| 561 |14.0250 | 1 | 0.569221 | 0.592313 | -4.886037 |-1.019796e+01 |-7.316731e-01 |
| 562 |14.0500 | 1 | 0.569323 | 0.588773 | -4.884458 |-1.019577e+01 |-7.318439e-01 |
| 563 |14.0750 | 1 | 0.575350 | 0.590234 | -4.882463 |-1.019359e+01 |-7.320154e-01 |
| 564 |14.1000 | 1 | 0.565140 | 0.597502 | -4.881607 |-1.019139e+01 |-7.321875e-01 |
| 565 |14.1250 | 1 | 0.555995 | 0.601872 | -4.880250 |-1.018919e+01 |-7.323602e-01 |
| 566 |14.1500 | 1 | 0.582065 | 0.599824 | -4.879771 |-1.018699e+01 |-7.325336e-01 |
| 567 |14.1750 | 1 | 0.573287 | 0.591480 | -4.877873 |-1.018478e+01 |-7.327076e-01 |
| 568 |14.2000 | 1 | 0.574334 | 0.602253 | -4.876963 |-1.018256e+01 |-7.328822e-01 |
| 569 |14.2250 | 1 | 0.531243 | 0.628437 | -4.874752 |-1.018034e+01 |-7.330574e-01 |
| 570 |14.2500 | 1 | 0.530046 | 0.617958 | -4.874261 |-1.017812e+01 |-7.332332e-01 |
| 571 |14.2750 | 1 | 0.533493 | 0.621578 | -4.872975 |-1.017589e+01 |-7.334095e-01 |
| 572 |14.3000 | 1 | 0.531280 | 0.620959 | -4.872344 |-1.017365e+01 |-7.335865e-01 |
| 573 |14.3250 | 1 | 0.533888 | 0.617618 | -4.871330 |-1.017142e+01 |-7.337640e-01 |
| 574 |14.3500 | 1 | 0.538329 | 0.615710 | -4.869608 |-1.016917e+01 |-7.339420e-01 |
| 575 |14.3750 | 1 | 0.538880 | 0.617203 | -4.868750 |-1.016693e+01 |-7.341206e-01 |
| 576 |14.4000 | 1 | 0.538717 | 0.619451 | -4.867217 |-1.016468e+01 |-7.342997e-01 |
| 577 |14.4250 | 1 | 0.521259 | 0.628772 | -4.866965 |-1.016243e+01 |-7.344794e-01 |
| 578 |14.4500 | 1 | 0.532905 | 0.622927 | -4.865877 |-1.016017e+01 |-7.346595e-01 |
| 579 |14.4750 | 1 | 0.533617 | 0.622496 | -4.865300 |-1.015791e+01 |-7.348401e-01 |
| 580 |14.5000 | 1 | 0.534588 | 0.619178 | -4.863812 |-1.015565e+01 |-7.350212e-01 |
| 581 |14.5250 | 1 | 0.541063 | 0.619951 | -4.862879 |-1.015338e+01 |-7.352028e-01 |
| 582 |14.5500 | 1 | 0.552002 | 0.630617 | -4.861832 |-1.015111e+01 |-7.353848e-01 |
| 583 |14.5750 | 1 | 0.534411 | 0.618651 | -4.861210 |-1.014884e+01 |-7.355673e-01 |
| 584 |14.6000 | 1 | 0.519947 | 0.634783 | -4.860831 |-1.014656e+01 |-7.357502e-01 |
| 585 |14.6250 | 1 | 0.532511 | 0.623628 | -4.859751 |-1.014429e+01 |-7.359336e-01 |
| 586 |14.6500 | 1 | 0.533837 | 0.631545 | -4.859199 |-1.014201e+01 |-7.361174e-01 |
| 587 |14.6750 | 1 | 0.531337 | 0.621002 | -4.857699 |-1.013972e+01 |-7.363016e-01 |
| 588 |14.7000 | 1 | 0.533695 | 0.628152 | -4.857362 |-1.013744e+01 |-7.364862e-01 |
| 589 |14.7250 | 1 | 0.537053 | 0.620282 | -4.856500 |-1.013515e+01 |-7.366711e-01 |
| 590 |14.7500 | 1 | 0.530726 | 0.624015 | -4.856289 |-1.013286e+01 |-7.368564e-01 |
| 591 |14.7750 | 1 | 0.536236 | 0.627392 | -4.855632 |-1.013057e+01 |-7.370421e-01 |
| 592 |14.8000 | 1 | 0.543870 | 0.627993 | -4.854757 |-1.012828e+01 |-7.372282e-01 |
| 593 |14.8250 | 1 | 0.526978 | 0.622442 | -4.854112 |-1.012599e+01 |-7.374146e-01 |
| 594 |14.8500 | 1 | 0.533051 | 0.620095 | -4.853078 |-1.012369e+01 |-7.376013e-01 |
| 595 |14.8750 | 1 | 0.537832 | 0.629321 | -4.853194 |-1.012140e+01 |-7.377884e-01 |
| 596 |14.9000 | 1 | 0.534586 | 0.618118 | -4.852261 |-1.011910e+01 |-7.379757e-01 |
| 597 |14.9250 | 1 | 0.567604 | 0.593661 | -4.852487 |-1.011680e+01 |-7.381634e-01 |
| 598 |14.9500 | 1 | 0.572954 | 0.599532 | -4.851275 |-1.011451e+01 |-7.383513e-01 |
| 599 |14.9750 | 1 | 0.562174 | 0.595357 | -4.851012 |-1.011221e+01 |-7.385395e-01 |
| 600 |15.0000 | 1 | 0.565041 | 0.594815 | -4.850216 |-1.010991e+01 |-7.387280e-01 |
| 601 |15.0250 | 1 | 0.568619 | 0.602458 | -4.849993 |-1.010761e+01 |-7.389167e-01 |
| 602 |15.0500 | 1 | 0.565685 | 0.599703 | -4.849887 |-1.010531e+01 |-7.391057e-01 |
| 603 |15.0750 | 1 | 0.559376 | 0.612765 | -4.849425 |-1.010300e+01 |-7.392949e-01 |
| 604 |15.1000 | 1 | 0.558552 | 0.602107 | -4.849206 |-1.010070e+01 |-7.394843e-01 |
| 605 |15.1250 | 1 | 0.582718 | 0.633646 | -4.848406 |-1.009840e+01 |-7.396740e-01 |
| 606 |15.1500 | 1 | 0.581577 | 0.623610 | -4.848264 |-1.009610e+01 |-7.398638e-01 |
| 607 |15.1750 | 1 | 0.565744 | 0.594525 | -4.847774 |-1.009380e+01 |-7.400538e-01 |
| 608 |15.2000 | 1 | 0.564061 | 0.594557 | -4.848037 |-1.009150e+01 |-7.402440e-01 |
| 609 |15.2250 | 1 | 0.567888 | 0.599122 | -4.847578 |-1.008921e+01 |-7.404344e-01 |
| 610 |15.2500 | 1 | 0.570234 | 0.602823 | -4.847542 |-1.008691e+01 |-7.406249e-01 |
| 611 |15.2750 | 1 | 0.561263 | 0.598452 | -4.847030 |-1.008461e+01 |-7.408156e-01 |
| 612 |15.3000 | 1 | 0.568963 | 0.599018 | -4.846710 |-1.008231e+01 |-7.410064e-01 |
| 613 |15.3250 | 1 | 0.559163 | 0.605724 | -4.846813 |-1.008002e+01 |-7.411973e-01 |
| 614 |15.3500 | 1 | 0.564462 | 0.599463 | -4.846562 |-1.007773e+01 |-7.413883e-01 |
| 615 |15.3750 | 1 | 0.580952 | 0.610074 | -4.846943 |-1.007543e+01 |-7.415794e-01 |
| 616 |15.4000 | 1 | 0.568574 | 0.597096 | -4.846413 |-1.007314e+01 |-7.417706e-01 |
| 617 |15.4250 | 1 | 0.565757 | 0.596118 | -4.846541 |-1.007085e+01 |-7.419619e-01 |
| 618 |15.4500 | 1 | 0.537671 | 0.632581 | -4.846117 |-1.006857e+01 |-7.421533e-01 |
| 619 |15.4750 | 1 | 0.561591 | 0.596576 | -4.846302 |-1.006628e+01 |-7.423447e-01 |
| 620 |15.5000 | 1 | 0.559380 | 0.594044 | -4.846417 |-1.006400e+01 |-7.425361e-01 |
| 621 |15.5250 | 1 | 0.550661 | 0.639299 | -4.846521 |-1.006172e+01 |-7.427276e-01 |
| 622 |15.5500 | 1 | 0.564344 | 0.599497 | -4.846664 |-1.005944e+01 |-7.429191e-01 |
| 623 |15.5750 | 1 | 0.564470 | 0.598390 | -4.846375 |-1.005716e+01 |-7.431107e-01 |
| 624 |15.6000 | 1 | 0.582095 | 0.621527 | -4.846646 |-1.005489e+01 |-7.433022e-01 |
| 625 |15.6250 | 1 | 0.563067 | 0.594485 | -4.846450 |-1.005262e+01 |-7.434937e-01 |
| 626 |15.6500 | 1 | 0.556217 | 0.597713 | -4.847057 |-1.005035e+01 |-7.436852e-01 |
| 627 |15.6750 | 1 | 0.556730 | 0.599759 | -4.847059 |-1.004809e+01 |-7.438766e-01 |
| 628 |15.7000 | 1 | 0.559253 | 0.596950 | -4.847442 |-1.004582e+01 |-7.440680e-01 |
| 629 |15.7250 | 1 | 0.566564 | 0.599786 | -4.847356 |-1.004357e+01 |-7.442594e-01 |
| 630 |15.7500 | 1 | 0.541901 | 0.610011 | -4.847580 |-1.004131e+01 |-7.444507e-01 |
| 631 |15.7750 | 1 | 0.552107 | 0.603683 | -4.847782 |-1.003906e+01 |-7.446419e-01 |
| 632 |15.8000 | 1 | 0.559163 | 0.600536 | -4.848163 |-1.003681e+01 |-7.448331e-01 |
| 633 |15.8250 | 1 | 0.565520 | 0.607117 | -4.848649 |-1.003456e+01 |-7.450241e-01 |
| 634 |15.8500 | 1 | 0.563058 | 0.602004 | -4.848834 |-1.003232e+01 |-7.452150e-01 |
| 635 |15.8750 | 1 | 0.565077 | 0.604592 | -4.849242 |-1.003009e+01 |-7.454058e-01 |
| 636 |15.9000 | 1 | 0.561084 | 0.613315 | -4.849257 |-1.002785e+01 |-7.455965e-01 |
| 637 |15.9250 | 1 | 0.562131 | 0.608055 | -4.849893 |-1.002562e+01 |-7.457870e-01 |
| 638 |15.9500 | 1 | 0.567037 | 0.607231 | -4.850162 |-1.002340e+01 |-7.459774e-01 |
| 639 |15.9750 | 1 | 0.559362 | 0.605681 | -4.850853 |-1.002118e+01 |-7.461676e-01 |
| 640 |16.0000 | 1 | 0.559990 | 0.606771 | -4.851290 |-1.001896e+01 |-7.463577e-01 |
| 641 |16.0250 | 1 | 0.563540 | 0.604675 | -4.851567 |-1.001675e+01 |-7.465476e-01 |
| 642 |16.0500 | 1 | 0.569776 | 0.614118 | -4.852131 |-1.001455e+01 |-7.467372e-01 |
| 643 |16.0750 | 1 | 0.526022 | 0.638151 | -4.852404 |-1.001234e+01 |-7.469267e-01 |
| 644 |16.1000 | 1 | 0.561008 | 0.613815 | -4.853264 |-1.001015e+01 |-7.471159e-01 |
| 645 |16.1250 | 1 | 0.558149 | 0.610124 | -4.853699 |-1.000796e+01 |-7.473050e-01 |
| 646 |16.1500 | 1 | 0.558817 | 0.602424 | -4.854509 |-1.000577e+01 |-7.474938e-01 |
| 647 |16.1750 | 1 | 0.551800 | 0.649783 | -4.854874 |-1.000359e+01 |-7.476823e-01 |
| 648 |16.2000 | 1 | 0.563560 | 0.614133 | -4.830412 |-1.000141e+01 |-7.478702e-01 |
| 649 |16.2250 | 1 | 0.527692 | 0.637038 | -4.860230 |-9.999242e+00 |-7.480574e-01 |
| 650 |16.2500 | 1 | 0.520572 | 0.630335 | -4.856936 |-9.997077e+00 |-7.482449e-01 |
| 651 |16.2750 | 1 | 0.538065 | 0.623007 | -4.855762 |-9.994918e+00 |-7.484321e-01 |
| 652 |16.3000 | 1 | 0.563850 | 0.606399 | -4.859225 |-9.992765e+00 |-7.486189e-01 |
| 653 |16.3250 | 1 | 0.569525 | 0.613083 | -4.857579 |-9.990618e+00 |-7.488056e-01 |
| 654 |16.3500 | 1 | 0.572920 | 0.616659 | -4.856411 |-9.988477e+00 |-7.489920e-01 |
| 655 |16.3750 | 1 | 0.565054 | 0.622951 | -4.859712 |-9.986343e+00 |-7.491781e-01 |
| 656 |16.4000 | 1 | 0.538484 | 0.637184 | -4.858656 |-9.984214e+00 |-7.493640e-01 |
| 657 |16.4250 | 1 | 0.572575 | 0.628920 | -4.863059 |-9.982092e+00 |-7.495496e-01 |
| 658 |16.4500 | 1 | 0.553086 | 0.615147 | -4.865486 |-9.979977e+00 |-7.497349e-01 |
| 659 |16.4750 | 1 | 0.554584 | 0.608671 | -4.862494 |-9.977868e+00 |-7.499197e-01 |
| 660 |16.5000 | 1 | 0.566182 | 0.632013 | -4.865031 |-9.975766e+00 |-7.501042e-01 |
| 661 |16.5250 | 1 | 0.559237 | 0.607847 | -4.864222 |-9.973671e+00 |-7.502883e-01 |
| 662 |16.5500 | 1 | 0.547495 | 0.609668 | -4.865897 |-9.971582e+00 |-7.504721e-01 |
| 663 |16.5750 | 1 | 0.554912 | 0.604920 | -4.870242 |-9.969500e+00 |-7.506554e-01 |
| 664 |16.6000 | 1 | 0.563164 | 0.608630 | -4.868999 |-9.967426e+00 |-7.508382e-01 |
| 665 |16.6250 | 1 | 0.557828 | 0.607771 | -4.870617 |-9.965359e+00 |-7.510206e-01 |
| 666 |16.6500 | 1 | 0.564567 | 0.611154 | -4.869702 |-9.963299e+00 |-7.512027e-01 |
| 667 |16.6750 | 1 | 0.570958 | 0.634616 | -4.868988 |-9.961247e+00 |-7.513841e-01 |
| 668 |16.7000 | 1 | 0.555363 | 0.608414 | -4.873698 |-9.959202e+00 |-7.515652e-01 |
| 669 |16.7250 | 1 | 0.550943 | 0.608364 | -4.874542 |-9.957164e+00 |-7.517458e-01 |
| 670 |16.7500 | 1 | 0.555703 | 0.608518 | -4.875535 |-9.955134e+00 |-7.519257e-01 |
| 671 |16.7750 | 1 | 0.545052 | 0.613267 | -4.877426 |-9.953112e+00 |-7.521053e-01 |
| 672 |16.8000 | 1 | 0.553070 | 0.605358 | -4.874922 |-9.951098e+00 |-7.522844e-01 |
| 673 |16.8250 | 1 | 0.561627 | 0.612107 | -4.876898 |-9.949092e+00 |-7.524629e-01 |
| 674 |16.8500 | 1 | 0.555659 | 0.607956 | -4.879987 |-9.947094e+00 |-7.526409e-01 |
| 675 |16.8750 | 1 | 0.553403 | 0.616417 | -4.880702 |-9.945105e+00 |-7.528184e-01 |
| 676 |16.9000 | 1 | 0.553432 | 0.612899 | -4.884087 |-9.943123e+00 |-7.529953e-01 |
| 677 |16.9250 | 1 | 0.559188 | 0.618660 | -4.883577 |-9.941150e+00 |-7.531718e-01 |
| 678 |16.9500 | 1 | 0.555787 | 0.615341 | -4.883057 |-9.939185e+00 |-7.533476e-01 |
| 679 |16.9750 | 1 | 0.558311 | 0.612354 | -4.885587 |-9.937229e+00 |-7.535229e-01 |
| 680 |17.0000 | 1 | 0.561945 | 0.618028 | -4.886378 |-9.935282e+00 |-7.536977e-01 |
| 681 |17.0250 | 1 | 0.539489 | 0.628249 | -4.890029 |-9.933343e+00 |-7.538718e-01 |
| 682 |17.0500 | 1 | 0.514794 | 0.643622 | -4.892106 |-9.931413e+00 |-7.540454e-01 |
| 683 |17.0750 | 1 | 0.539393 | 0.626948 | -4.890958 |-9.929493e+00 |-7.542183e-01 |
| 684 |17.1000 | 1 | 0.560875 | 0.618428 | -4.893438 |-9.927581e+00 |-7.543907e-01 |
| 685 |17.1250 | 1 | 0.554366 | 0.611880 | -4.893277 |-9.925678e+00 |-7.545624e-01 |
| 686 |17.1500 | 1 | 0.553763 | 0.618234 | -4.894869 |-9.923784e+00 |-7.547335e-01 |
| 687 |17.1750 | 1 | 0.553390 | 0.611751 | -4.899919 |-9.921900e+00 |-7.549040e-01 |
| 688 |17.2000 | 1 | 0.556929 | 0.626983 | -4.899359 |-9.920025e+00 |-7.550737e-01 |
| 689 |17.2250 | 1 | 0.551784 | 0.617594 | -4.901290 |-9.918159e+00 |-7.552428e-01 |
| 690 |17.2500 | 1 | 0.534141 | 0.623701 | -4.902376 |-9.916303e+00 |-7.554113e-01 |
| 691 |17.2750 | 1 | 0.520007 | 0.638176 | -4.901707 |-9.914456e+00 |-7.555791e-01 |
| 692 |17.3000 | 1 | 0.514522 | 0.638778 | -4.905930 |-9.912619e+00 |-7.557462e-01 |
| 693 |17.3250 | 1 | 0.510692 | 0.643761 | -4.907376 |-9.910792e+00 |-7.559126e-01 |
| 694 |17.3500 | 1 | 0.517713 | 0.643936 | -4.909717 |-9.908974e+00 |-7.560782e-01 |
| 695 |17.3750 | 1 | 0.541182 | 0.655376 | -4.911696 |-9.907166e+00 |-7.562432e-01 |
| 696 |17.4000 | 1 | 0.551757 | 0.611377 | -4.910876 |-9.905369e+00 |-7.564075e-01 |
| 697 |17.4250 | 1 | 0.555262 | 0.614891 | -4.913403 |-9.903581e+00 |-7.565710e-01 |
| 698 |17.4500 | 1 | 0.564454 | 0.624082 | -4.915500 |-9.901804e+00 |-7.567338e-01 |
| 699 |17.4750 | 1 | 0.553199 | 0.610732 | -4.917215 |-9.900037e+00 |-7.568959e-01 |
| 700 |17.5000 | 1 | 0.548138 | 0.608044 | -4.921356 |-9.898280e+00 |-7.570572e-01 |
| 701 |17.5250 | 1 | 0.549388 | 0.607808 | -4.921642 |-9.896533e+00 |-7.572177e-01 |
| 702 |17.5500 | 1 | 0.553081 | 0.618402 | -4.922276 |-9.894797e+00 |-7.573775e-01 |
| 703 |17.5750 | 1 | 0.551544 | 0.613274 | -4.925124 |-9.893071e+00 |-7.575366e-01 |
| 704 |17.6000 | 1 | 0.537771 | 0.622332 | -4.925960 |-9.891356e+00 |-7.576948e-01 |
| 705 |17.6250 | 1 | 0.547941 | 0.612396 | -4.929428 |-9.889651e+00 |-7.578523e-01 |
| 706 |17.6500 | 1 | 0.558546 | 0.618044 | -4.932578 |-9.887957e+00 |-7.580090e-01 |
| 707 |17.6750 | 1 | 0.550670 | 0.613128 | -4.933198 |-9.886274e+00 |-7.581648e-01 |
| 708 |17.7000 | 1 | 0.549359 | 0.610619 | -4.935304 |-9.884602e+00 |-7.583199e-01 |
| 709 |17.7250 | 1 | 0.548109 | 0.608598 | -4.936363 |-9.882941e+00 |-7.584741e-01 |
| 710 |17.7500 | 1 | 0.550066 | 0.621723 | -4.938473 |-9.881290e+00 |-7.586276e-01 |
| 711 |17.7750 | 1 | 0.547227 | 0.613100 | -4.942387 |-9.879651e+00 |-7.587801e-01 |
| 712 |17.8000 | 1 | 0.549032 | 0.607084 | -4.943841 |-9.878023e+00 |-7.589318e-01 |
| 713 |17.8250 | 1 | 0.553408 | 0.626393 | -4.946716 |-9.876405e+00 |-7.590827e-01 |
| 714 |17.8500 | 1 | 0.552940 | 0.612425 | -4.948343 |-9.874799e+00 |-7.592327e-01 |
| 715 |17.8750 | 1 | 0.547835 | 0.608350 | -4.948430 |-9.873205e+00 |-7.593819e-01 |
| 716 |17.9000 | 1 | 0.540325 | 0.615331 | -4.952754 |-9.871621e+00 |-7.595302e-01 |
| 717 |17.9250 | 1 | 0.541983 | 0.615043 | -4.954732 |-9.870049e+00 |-7.596776e-01 |
| 718 |17.9500 | 1 | 0.545322 | 0.613781 | -4.957229 |-9.868489e+00 |-7.598241e-01 |
| 719 |17.9750 | 1 | 0.550283 | 0.619134 | -4.960988 |-9.866940e+00 |-7.599697e-01 |
| 720 |18.0000 | 1 | 0.545893 | 0.614056 | -4.961059 |-9.865402e+00 |-7.601144e-01 |
| 721 |18.0250 | 1 | 0.545672 | 0.612643 | -4.963571 |-9.863876e+00 |-7.602583e-01 |
| 722 |18.0500 | 1 | 0.547688 | 0.613754 | -4.966223 |-9.862362e+00 |-7.604012e-01 |
| 723 |18.0750 | 1 | 0.552767 | 0.618856 | -4.968695 |-9.860860e+00 |-7.605432e-01 |
| 724 |18.1000 | 1 | 0.536194 | 0.619256 | -4.972596 |-9.859369e+00 |-7.606842e-01 |
| 725 |18.1250 | 1 | 0.547934 | 0.614264 | -4.974514 |-9.857890e+00 |-7.608244e-01 |
| 726 |18.1500 | 1 | 0.546250 | 0.609647 | -4.976536 |-9.856423e+00 |-7.609636e-01 |
| 727 |18.1750 | 1 | 0.543682 | 0.612869 | -4.979007 |-9.854968e+00 |-7.611018e-01 |
| 728 |18.2000 | 1 | 0.540415 | 0.613370 | -4.980559 |-9.853525e+00 |-7.612392e-01 |
| 729 |18.2250 | 1 | 0.545937 | 0.614889 | -4.984680 |-9.852095e+00 |-7.613755e-01 |
| 730 |18.2500 | 1 | 0.545980 | 0.617822 | -4.988031 |-9.850676e+00 |-7.615109e-01 |
| 731 |18.2750 | 1 | 0.542477 | 0.615399 | -4.989711 |-9.849269e+00 |-7.616453e-01 |
| 732 |18.3000 | 1 | 0.547334 | 0.637717 | -4.993188 |-9.847874e+00 |-7.617788e-01 |
| 733 |18.3250 | 1 | 0.553981 | 0.623099 | -4.994720 |-9.846492e+00 |-7.619113e-01 |
| 734 |18.3500 | 1 | 0.548177 | 0.615461 | -4.996885 |-9.845122e+00 |-7.620428e-01 |
| 735 |18.3750 | 1 | 0.541814 | 0.619284 | -5.001297 |-9.843764e+00 |-7.621732e-01 |
| 736 |18.4000 | 1 | 0.545819 | 0.612507 | -5.004011 |-9.842419e+00 |-7.623028e-01 |
| 737 |18.4250 | 1 | 0.544200 | 0.612841 | -5.007008 |-9.841085e+00 |-7.624312e-01 |
| 738 |18.4500 | 1 | 0.542160 | 0.613612 | -5.009954 |-9.839765e+00 |-7.625587e-01 |
| 739 |18.4750 | 1 | 0.579838 | 0.652729 | -5.011577 |-9.838457e+00 |-7.626852e-01 |
| 740 |18.5000 | 1 | 0.502843 | 0.647341 | -5.014921 |-9.837161e+00 |-7.628107e-01 |
| 741 |18.5250 | 1 | 0.551553 | 0.615329 | -5.018108 |-9.835878e+00 |-7.629351e-01 |
| 742 |18.5500 | 1 | 0.527083 | 0.626063 | -5.021511 |-9.834607e+00 |-7.630585e-01 |
| 743 |18.5750 | 1 | 0.539414 | 0.623069 | -5.025618 |-9.833349e+00 |-7.631809e-01 |
| 744 |18.6000 | 1 | 0.525490 | 0.626166 | -5.027066 |-9.832104e+00 |-7.633022e-01 |
| 745 |18.6250 | 1 | 0.517001 | 0.654233 | -5.030386 |-9.830872e+00 |-7.634225e-01 |
| 746 |18.6500 | 1 | 0.534137 | 0.626574 | -5.033620 |-9.829652e+00 |-7.635418e-01 |
| 747 |18.6750 | 1 | 0.542476 | 0.619676 | -5.035894 |-9.828445e+00 |-7.636599e-01 |
| 748 |18.7000 | 1 | 0.553023 | 0.625866 | -5.041104 |-9.827250e+00 |-7.637771e-01 |
| 749 |18.7250 | 1 | 0.540949 | 0.619120 | -5.044064 |-9.826069e+00 |-7.638931e-01 |
| 750 |18.7500 | 1 | 0.537734 | 0.621421 | -5.046464 |-9.824900e+00 |-7.640081e-01 |
| 751 |18.7750 | 1 | 0.538831 | 0.623689 | -5.050195 |-9.823745e+00 |-7.641221e-01 |
| 752 |18.8000 | 1 | 0.541038 | 0.621485 | -5.052620 |-9.822602e+00 |-7.642350e-01 |
| 753 |18.8250 | 1 | 0.535511 | 0.620073 | -5.056418 |-9.821472e+00 |-7.643467e-01 |
| 754 |18.8500 | 1 | 0.530924 | 0.626769 | -5.060668 |-9.820355e+00 |-7.644574e-01 |
| 755 |18.8750 | 1 | 0.537222 | 0.615511 | -5.064038 |-9.819251e+00 |-7.645670e-01 |
| 756 |18.9000 | 1 | 0.534256 | 0.619716 | -5.067645 |-9.818160e+00 |-7.646756e-01 |
| 757 |18.9250 | 1 | 0.535977 | 0.618753 | -5.070290 |-9.817082e+00 |-7.647830e-01 |
| 758 |18.9500 | 1 | 0.540988 | 0.623975 | -5.073509 |-9.816018e+00 |-7.648893e-01 |
| 759 |18.9750 | 1 | 0.549132 | 0.621750 | -5.078004 |-9.814966e+00 |-7.649945e-01 |
| 760 |19.0000 | 1 | 0.539145 | 0.617640 | -5.081158 |-9.813927e+00 |-7.650987e-01 |
| 761 |19.0250 | 1 | 0.540759 | 0.626675 | -5.085734 |-9.812902e+00 |-7.652017e-01 |
| 762 |19.0500 | 1 | 0.538078 | 0.622588 | -5.089589 |-9.811890e+00 |-7.653036e-01 |
| 763 |19.0750 | 1 | 0.522208 | 0.636657 | -5.091690 |-9.810890e+00 |-7.654044e-01 |
| 764 |19.1000 | 1 | 0.533418 | 0.625254 | -5.096080 |-9.809904e+00 |-7.655040e-01 |
| 765 |19.1250 | 1 | 0.539772 | 0.619554 | -5.100005 |-9.808932e+00 |-7.656026e-01 |
| 766 |19.1500 | 1 | 0.539060 | 0.621184 | -5.103610 |-9.807972e+00 |-7.657000e-01 |
| 767 |19.1750 | 1 | 0.535861 | 0.620145 | -5.108621 |-9.807026e+00 |-7.657963e-01 |
| 768 |19.2000 | 1 | 0.536273 | 0.636314 | -5.112126 |-9.806093e+00 |-7.658914e-01 |
| 769 |19.2250 | 1 | 0.527759 | 0.633821 | -5.115285 |-9.805173e+00 |-7.659854e-01 |
| 770 |19.2500 | 1 | 0.544239 | 0.628317 | -5.119466 |-9.804266e+00 |-7.660783e-01 |
| 771 |19.2750 | 1 | 0.537259 | 0.622405 | -5.123024 |-9.803373e+00 |-7.661701e-01 |
| 772 |19.3000 | 1 | 0.534405 | 0.621513 | -5.128168 |-9.802493e+00 |-7.662607e-01 |
| 773 |19.3250 | 1 | 0.536213 | 0.619574 | -5.132116 |-9.801626e+00 |-7.663501e-01 |
| 774 |19.3500 | 1 | 0.547262 | 0.633010 | -5.136146 |-9.800773e+00 |-7.664384e-01 |
| 775 |19.3750 | 1 | 0.532413 | 0.624157 | -5.140640 |-9.799933e+00 |-7.665256e-01 |
| 776 |19.4000 | 1 | 0.528069 | 0.631161 | -5.143361 |-9.799106e+00 |-7.666116e-01 |
| 777 |19.4250 | 1 | 0.508258 | 0.655418 | -5.148293 |-9.798293e+00 |-7.666965e-01 |
| 778 |19.4500 | 1 | 0.531947 | 0.619965 | -5.153388 |-9.797493e+00 |-7.667802e-01 |
| 779 |19.4750 | 1 | 0.538257 | 0.624263 | -5.157054 |-9.796706e+00 |-7.668627e-01 |
| 780 |19.5000 | 1 | 0.513675 | 0.639047 | -5.162093 |-9.795933e+00 |-7.669441e-01 |
| 781 |19.5250 | 1 | 0.524592 | 0.629631 | -5.166237 |-9.795173e+00 |-7.670243e-01 |
| 782 |19.5500 | 1 | 0.501278 | 0.646392 | -5.169515 |-9.794426e+00 |-7.671034e-01 |
| 783 |19.5750 | 1 | 0.508310 | 0.653496 | -5.174678 |-9.793693e+00 |-7.671812e-01 |
| 784 |19.6000 | 1 | 0.501368 | 0.644803 | -5.179349 |-9.792973e+00 |-7.672580e-01 |
| 785 |19.6250 | 1 | 0.505631 | 0.653741 | -5.184141 |-9.792267e+00 |-7.673335e-01 |
| 786 |19.6500 | 1 | 0.501214 | 0.647573 | -5.188924 |-9.791574e+00 |-7.674079e-01 |
| 787 |19.6750 | 1 | 0.495648 | 0.655176 | -5.192845 |-9.790894e+00 |-7.674811e-01 |
| 788 |19.7000 | 1 | 0.499932 | 0.647758 | -5.197708 |-9.790228e+00 |-7.675532e-01 |
| 789 |19.7250 | 1 | 0.518200 | 0.630863 | -5.201669 |-9.789575e+00 |-7.676241e-01 |
| 790 |19.7500 | 1 | 0.536332 | 0.619421 | -5.206930 |-9.788935e+00 |-7.676937e-01 |
| 791 |19.7750 | 1 | 0.531387 | 0.621932 | -5.212611 |-9.788309e+00 |-7.677623e-01 |
| 792 |19.8000 | 1 | 0.527384 | 0.622412 | -5.216559 |-9.787696e+00 |-7.678296e-01 |
| 793 |19.8250 | 1 | 0.529678 | 0.620205 | -5.221430 |-9.787096e+00 |-7.678958e-01 |
| 794 |19.8500 | 1 | 0.508913 | 0.648031 | -5.226400 |-9.786510e+00 |-7.679608e-01 |
| 795 |19.8750 | 1 | 0.504351 | 0.648719 | -5.230347 |-9.785937e+00 |-7.680246e-01 |
| 796 |19.9000 | 1 | 0.500118 | 0.648664 | -5.235880 |-9.785377e+00 |-7.680872e-01 |
| 797 |19.9250 | 1 | 0.528246 | 0.630585 | -5.241694 |-9.784831e+00 |-7.681487e-01 |
| 798 |19.9500 | 1 | 0.542162 | 0.629759 | -5.245912 |-9.784298e+00 |-7.682090e-01 |
| 799 |19.9750 | 1 | 0.529981 | 0.619840 | -5.251163 |-9.783778e+00 |-7.682681e-01 |
| 800 |20.0000 | 1 | 0.529003 | 0.618461 | -5.255740 |-9.783271e+00 |-7.683260e-01 |
| 801 |20.0250 | 1 | 0.531965 | 0.615729 | -5.260634 |-9.782778e+00 |-7.683827e-01 |
| 802 |20.0500 | 1 | 0.535846 | 0.625167 | -5.265935 |-9.782298e+00 |-7.684383e-01 |
| 803 |20.0750 | 1 | 0.530973 | 0.621185 | -5.271230 |-9.781831e+00 |-7.684927e-01 |
| 804 |20.1000 | 1 | 0.534419 | 0.622091 | -5.277057 |-9.781378e+00 |-7.685459e-01 |
| 805 |20.1250 | 1 | 0.534982 | 0.622699 | -5.281286 |-9.780938e+00 |-7.685979e-01 |
| 806 |20.1500 | 1 | 0.530764 | 0.620805 | -5.286196 |-9.780510e+00 |-7.686487e-01 |
| 807 |20.1750 | 1 | 0.511985 | 0.636388 | -5.291943 |-9.780096e+00 |-7.686984e-01 |
| 808 |20.2000 | 1 | 0.496395 | 0.650078 | -5.296389 |-9.779696e+00 |-7.687469e-01 |
| 809 |20.2250 | 1 | 0.500372 | 0.658939 | -5.302208 |-9.779308e+00 |-7.687942e-01 |
| 810 |20.2500 | 1 | 0.499443 | 0.650036 | -5.308191 |-9.778933e+00 |-7.688403e-01 |
| 811 |20.2750 | 1 | 0.507094 | 0.660675 | -5.312377 |-9.778572e+00 |-7.688852e-01 |
| 812 |20.3000 | 1 | 0.501244 | 0.655777 | -5.317533 |-9.778224e+00 |-7.689290e-01 |
| 813 |20.3250 | 1 | 0.497886 | 0.659485 | -5.322998 |-9.777888e+00 |-7.689716e-01 |
| 814 |20.3500 | 1 | 0.531331 | 0.625960 | -5.327874 |-9.777566e+00 |-7.690130e-01 |
| 815 |20.3750 | 1 | 0.520818 | 0.633773 | -5.333552 |-9.777257e+00 |-7.690533e-01 |
| 816 |20.4000 | 1 | 0.528115 | 0.629487 | -5.338954 |-9.776961e+00 |-7.690924e-01 |
| 817 |20.4250 | 1 | 0.533945 | 0.639602 | -5.344271 |-9.776677e+00 |-7.691303e-01 |
| 818 |20.4500 | 1 | 0.518692 | 0.616616 | -5.348659 |-9.776407e+00 |-7.691670e-01 |
| 819 |20.4750 | 1 | 0.522226 | 0.616927 | -5.353802 |-9.776149e+00 |-7.692026e-01 |
| 820 |20.5000 | 1 | 0.488609 | 0.653811 | -5.359571 |-9.775905e+00 |-7.692370e-01 |
| 821 |20.5250 | 1 | 0.484709 | 0.644598 | -5.364204 |-9.775673e+00 |-7.692702e-01 |
| 822 |20.5500 | 1 | 0.486915 | 0.644077 | -5.369689 |-9.775454e+00 |-7.693023e-01 |
| 823 |20.5750 | 1 | 0.486652 | 0.644571 | -5.375147 |-9.775248e+00 |-7.693332e-01 |
| 824 |20.6000 | 1 | 0.504305 | 0.636577 | -5.379300 |-9.775055e+00 |-7.693629e-01 |
| 825 |20.6250 | 1 | 0.498041 | 0.634625 | -5.383927 |-9.774875e+00 |-7.693915e-01 |
| 826 |20.6500 | 1 | 0.491458 | 0.658197 | -5.389699 |-9.774707e+00 |-7.694190e-01 |
| 827 |20.6750 | 1 | 0.496825 | 0.658731 | -5.394111 |-9.774552e+00 |-7.694452e-01 |
| 828 |20.7000 | 1 | 0.502448 | 0.654295 | -5.398969 |-9.774409e+00 |-7.694703e-01 |
| 829 |20.7250 | 1 | 0.526343 | 0.629665 | -5.404191 |-9.774279e+00 |-7.694943e-01 |
| 830 |20.7500 | 1 | 0.527985 | 0.637049 | -5.408232 |-9.774162e+00 |-7.695171e-01 |
| 831 |20.7750 | 1 | 0.526428 | 0.631766 | -5.412435 |-9.774057e+00 |-7.695388e-01 |
| 832 |20.8000 | 1 | 0.549858 | 0.656701 | -5.417086 |-9.773965e+00 |-7.695593e-01 |
| 833 |20.8250 | 1 | 0.525367 | 0.640356 | -5.421889 |-9.773886e+00 |-7.695787e-01 |
| 834 |20.8500 | 1 | 0.526791 | 0.632546 | -5.425807 |-9.773818e+00 |-7.695970e-01 |
| 835 |20.8750 | 1 | 0.527689 | 0.634832 | -5.429904 |-9.773763e+00 |-7.696141e-01 |
| 836 |20.9000 | 1 | 0.527279 | 0.632626 | -5.434402 |-9.773721e+00 |-7.696301e-01 |
| 837 |20.9250 | 1 | 0.522657 | 0.645628 | -5.437396 |-9.773691e+00 |-7.696449e-01 |
| 838 |20.9500 | 1 | 0.525489 | 0.635935 | -5.441073 |-9.773673e+00 |-7.696586e-01 |
| 839 |20.9750 | 1 | 0.532311 | 0.650099 | -5.445642 |-9.773668e+00 |-7.696712e-01 |
| 840 |21.0000 | 1 | 0.529552 | 0.651858 | -5.448456 |-9.773674e+00 |-7.696827e-01 |
| 841 |21.0250 | 1 | 0.503458 | 0.671841 | -5.451750 |-9.773693e+00 |-7.696930e-01 |
| 842 |21.0500 | 1 | 0.501758 | 0.675092 | -5.455281 |-9.773724e+00 |-7.697022e-01 |
| 843 |21.0750 | 1 | 0.514197 | 0.677148 | -5.457769 |-9.773768e+00 |-7.697103e-01 |
| 844 |21.1000 | 1 | 0.501449 | 0.669868 | -5.460336 |-9.773823e+00 |-7.697173e-01 |
| 845 |21.1250 | 1 | 0.497707 | 0.677975 | -5.463272 |-9.773890e+00 |-7.697232e-01 |
| 846 |21.1500 | 1 | 0.500228 | 0.670709 | -5.466064 |-9.773969e+00 |-7.697280e-01 |
| 847 |21.1750 | 1 | 0.504896 | 0.676630 | -5.467633 |-9.774060e+00 |-7.697316e-01 |
| 848 |21.2000 | 1 | 0.500956 | 0.671256 | -5.469894 |-9.774164e+00 |-7.697342e-01 |
| 849 |21.2250 | 1 | 0.496505 | 0.674550 | -5.472033 |-9.774278e+00 |-7.697357e-01 |
| 850 |21.2500 | 1 | 0.529665 | 0.644782 | -5.472924 |-9.774405e+00 |-7.697361e-01 |
| 851 |21.2750 | 1 | 0.528408 | 0.645465 | -5.474619 |-9.774544e+00 |-7.697354e-01 |
| 852 |21.3000 | 1 | 0.519741 | 0.635947 | -5.476252 |-9.774694e+00 |-7.697336e-01 |
| 853 |21.3250 | 1 | 0.504346 | 0.651090 | -5.476890 |-9.774856e+00 |-7.697307e-01 |
| 854 |21.3500 | 1 | 0.532271 | 0.638573 | -5.477458 |-9.775029e+00 |-7.697268e-01 |
| 855 |21.3750 | 1 | 0.523634 | 0.638200 | -5.478494 |-9.775214e+00 |-7.697218e-01 |
| 856 |21.4000 | 1 | 0.519422 | 0.638265 | -5.478639 |-9.775411e+00 |-7.697157e-01 |
| 857 |21.4250 | 1 | 0.518510 | 0.639035 | -5.478368 |-9.775619e+00 |-7.697085e-01 |
| 858 |21.4500 | 1 | 0.510864 | 0.672835 | -5.478909 |-9.775839e+00 |-7.697003e-01 |
| 859 |21.4750 | 1 | 0.524935 | 0.637128 | -5.478554 |-9.776069e+00 |-7.696910e-01 |
| 860 |21.5000 | 1 | 0.507660 | 0.648373 | -5.477690 |-9.776312e+00 |-7.696807e-01 |
| 861 |21.5250 | 1 | 0.499457 | 0.665963 | -5.477335 |-9.776565e+00 |-7.696693e-01 |
| 862 |21.5500 | 1 | 0.499270 | 0.658582 | -5.476603 |-9.776830e+00 |-7.696569e-01 |
| 863 |21.5750 | 1 | 0.519785 | 0.638694 | -5.475176 |-9.777106e+00 |-7.696434e-01 |
| 864 |21.6000 | 1 | 0.534959 | 0.658340 | -5.473925 |-9.777393e+00 |-7.696289e-01 |
| 865 |21.6250 | 1 | 0.516683 | 0.652932 | -5.472998 |-9.777691e+00 |-7.696133e-01 |
| 866 |21.6500 | 1 | 0.524993 | 0.643355 | -5.470927 |-9.778000e+00 |-7.695968e-01 |
| 867 |21.6750 | 1 | 0.521338 | 0.641387 | -5.469193 |-9.778320e+00 |-7.695792e-01 |
| 868 |21.7000 | 1 | 0.511949 | 0.650276 | -5.467707 |-9.778651e+00 |-7.695606e-01 |
| 869 |21.7250 | 1 | 0.516787 | 0.641368 | -5.465221 |-9.778993e+00 |-7.695409e-01 |
| 870 |21.7500 | 1 | 0.526370 | 0.644767 | -5.462966 |-9.779345e+00 |-7.695203e-01 |
| 871 |21.7750 | 1 | 0.527064 | 0.650980 | -5.460746 |-9.779709e+00 |-7.694986e-01 |
| 872 |21.8000 | 1 | 0.516300 | 0.660074 | -5.458348 |-9.780083e+00 |-7.694760e-01 |
| 873 |21.8250 | 1 | 0.516653 | 0.640115 | -5.455473 |-9.780468e+00 |-7.694523e-01 |
| 874 |21.8500 | 1 | 0.519911 | 0.637954 | -5.452906 |-9.780863e+00 |-7.694277e-01 |
| 875 |21.8750 | 1 | 0.515326 | 0.653226 | -5.450254 |-9.781269e+00 |-7.694021e-01 |
| 876 |21.9000 | 1 | 0.519997 | 0.639056 | -5.446816 |-9.781685e+00 |-7.693755e-01 |
| 877 |21.9250 | 1 | 0.520825 | 0.640152 | -5.443891 |-9.782112e+00 |-7.693479e-01 |
| 878 |21.9500 | 1 | 0.517811 | 0.643432 | -5.441052 |-9.782549e+00 |-7.693193e-01 |
| 879 |21.9750 | 1 | 0.514777 | 0.645231 | -5.437508 |-9.782996e+00 |-7.692898e-01 |
| 880 |22.0000 | 1 | 0.509819 | 0.664910 | -5.434299 |-9.783453e+00 |-7.692593e-01 |
| 881 |22.0250 | 1 | 0.533964 | 0.644499 | -5.431166 |-9.783921e+00 |-7.692279e-01 |
| 882 |22.0500 | 1 | 0.515048 | 0.643263 | -5.427340 |-9.784399e+00 |-7.691955e-01 |
| 883 |22.0750 | 1 | 0.528883 | 0.638636 | -5.423886 |-9.784887e+00 |-7.691622e-01 |
| 884 |22.1000 | 1 | 0.520719 | 0.634711 | -5.420468 |-9.785385e+00 |-7.691279e-01 |
| 885 |22.1250 | 1 | 0.520284 | 0.649912 | -5.416873 |-9.785892e+00 |-7.690927e-01 |
| 886 |22.1500 | 1 | 0.528762 | 0.647822 | -5.413226 |-9.786410e+00 |-7.690565e-01 |
| 887 |22.1750 | 1 | 0.509786 | 0.659574 | -5.409500 |-9.786937e+00 |-7.690194e-01 |
| 888 |22.2000 | 1 | 0.520104 | 0.640645 | -5.405926 |-9.787475e+00 |-7.689815e-01 |
| 889 |22.2250 | 1 | 0.528201 | 0.646174 | -5.401876 |-9.788022e+00 |-7.689426e-01 |
| 890 |22.2500 | 1 | 0.517401 | 0.639639 | -5.398218 |-9.788578e+00 |-7.689027e-01 |
| 891 |22.2750 | 1 | 0.520639 | 0.632424 | -5.394694 |-9.789144e+00 |-7.688620e-01 |
| 892 |22.3000 | 1 | 0.522067 | 0.636225 | -5.390716 |-9.789720e+00 |-7.688204e-01 |
| 893 |22.3250 | 1 | 0.517790 | 0.632747 | -5.386888 |-9.790305e+00 |-7.687779e-01 |
| 894 |22.3500 | 1 | 0.507874 | 0.644954 | -5.383266 |-9.790899e+00 |-7.687345e-01 |
| 895 |22.3750 | 1 | 0.464989 | 0.691658 | -5.379134 |-9.791502e+00 |-7.686902e-01 |
| 896 |22.4000 | 1 | 0.480783 | 0.677711 | -5.375381 |-9.792115e+00 |-7.686451e-01 |
| 897 |22.4250 | 1 | 0.490632 | 0.674024 | -5.371811 |-9.792737e+00 |-7.685991e-01 |
| 898 |22.4500 | 1 | 0.481621 | 0.671897 | -5.367827 |-9.793368e+00 |-7.685522e-01 |
| 899 |22.4750 | 1 | 0.474796 | 0.677255 | -5.364149 |-9.794009e+00 |-7.685045e-01 |
| 900 |22.5000 | 1 | 0.491788 | 0.670256 | -5.360229 |-9.794658e+00 |-7.684559e-01 |
| 901 |22.5250 | 1 | 0.484136 | 0.663273 | -5.356469 |-9.795316e+00 |-7.684065e-01 |
| 902 |22.5500 | 1 | 0.494571 | 0.674221 | -5.352664 |-9.795983e+00 |-7.683562e-01 |
| 903 |22.5750 | 1 | 0.484502 | 0.666114 | -5.348923 |-9.796658e+00 |-7.683051e-01 |
| 904 |22.6000 | 1 | 0.500552 | 0.659357 | -5.345406 |-9.797343e+00 |-7.682532e-01 |
| 905 |22.6250 | 1 | 0.474210 | 0.675963 | -5.341552 |-9.798036e+00 |-7.682004e-01 |
| 906 |22.6500 | 1 | 0.512181 | 0.642814 | -5.337793 |-9.798737e+00 |-7.681468e-01 |
| 907 |22.6750 | 1 | 0.530902 | 0.671671 | -5.334230 |-9.799447e+00 |-7.680925e-01 |
| 908 |22.7000 | 1 | 0.514472 | 0.642086 | -5.330476 |-9.800166e+00 |-7.680373e-01 |
| 909 |22.7250 | 1 | 0.511914 | 0.644290 | -5.326850 |-9.800893e+00 |-7.679813e-01 |
| 910 |22.7500 | 1 | 0.510064 | 0.648282 | -5.323523 |-9.801628e+00 |-7.679245e-01 |
| 911 |22.7750 | 1 | 0.513836 | 0.638366 | -5.319777 |-9.802371e+00 |-7.678670e-01 |
| 912 |22.8000 | 1 | 0.522687 | 0.642639 | -5.316235 |-9.803123e+00 |-7.678087e-01 |
| 913 |22.8250 | 1 | 0.513428 | 0.637363 | -5.312791 |-9.803882e+00 |-7.677496e-01 |
| 914 |22.8500 | 1 | 0.512795 | 0.639266 | -5.309169 |-9.804650e+00 |-7.676897e-01 |
| 915 |22.8750 | 1 | 0.519954 | 0.638287 | -5.305885 |-9.805425e+00 |-7.676291e-01 |
| 916 |22.9000 | 1 | 0.481317 | 0.673174 | -5.302459 |-9.806209e+00 |-7.675677e-01 |
| 917 |22.9250 | 1 | 0.498218 | 0.656933 | -5.299122 |-9.807000e+00 |-7.675056e-01 |
| 918 |22.9500 | 1 | 0.515562 | 0.638124 | -5.295768 |-9.807799e+00 |-7.674427e-01 |
| 919 |22.9750 | 1 | 0.518832 | 0.657375 | -5.292315 |-9.808606e+00 |-7.673791e-01 |
| 920 |23.0000 | 1 | 0.509751 | 0.646163 | -5.289145 |-9.809420e+00 |-7.673148e-01 |
| 921 |23.0250 | 1 | 0.521466 | 0.646805 | -5.285912 |-9.810242e+00 |-7.672497e-01 |
| 922 |23.0500 | 1 | 0.512008 | 0.637779 | -5.282643 |-9.811071e+00 |-7.671840e-01 |
| 923 |23.0750 | 1 | 0.517762 | 0.647592 | -5.279669 |-9.811908e+00 |-7.671175e-01 |
| 924 |23.1000 | 1 | 0.521314 | 0.644842 | -5.276377 |-9.812752e+00 |-7.670503e-01 |
| 925 |23.1250 | 1 | 0.495290 | 0.652850 | -5.273205 |-9.813603e+00 |-7.669824e-01 |
| 926 |23.1500 | 1 | 0.516843 | 0.640946 | -5.270279 |-9.814461e+00 |-7.669139e-01 |
| 927 |23.1750 | 1 | 0.511137 | 0.637577 | -5.267108 |-9.815327e+00 |-7.668446e-01 |
| 928 |23.2000 | 1 | 0.512721 | 0.636781 | -5.264265 |-9.816199e+00 |-7.667747e-01 |
| 929 |23.2250 | 1 | 0.514486 | 0.641128 | -5.261287 |-9.817078e+00 |-7.667042e-01 |
| 930 |23.2500 | 1 | 0.502929 | 0.654364 | -5.258338 |-9.817965e+00 |-7.666329e-01 |
| 931 |23.2750 | 1 | 0.482228 | 0.677815 | -5.255424 |-9.818858e+00 |-7.665610e-01 |
| 932 |23.3000 | 1 | 0.476847 | 0.674906 | -5.252544 |-9.819758e+00 |-7.664885e-01 |
| 933 |23.3250 | 1 | 0.479599 | 0.666247 | -5.249762 |-9.820664e+00 |-7.664153e-01 |
| 934 |23.3500 | 1 | 0.481180 | 0.669578 | -5.247035 |-9.821577e+00 |-7.663414e-01 |
| 935 |23.3750 | 1 | 0.480612 | 0.667914 | -5.244279 |-9.822497e+00 |-7.662670e-01 |
| 936 |23.4000 | 1 | 0.494679 | 0.679912 | -5.241565 |-9.823423e+00 |-7.661919e-01 |
| 937 |23.4250 | 1 | 0.480638 | 0.670267 | -5.238915 |-9.824355e+00 |-7.661162e-01 |
| 938 |23.4500 | 1 | 0.476561 | 0.677960 | -5.236134 |-9.825294e+00 |-7.660399e-01 |
| 939 |23.4750 | 1 | 0.479632 | 0.672821 | -5.233690 |-9.826238e+00 |-7.659630e-01 |
| 940 |23.5000 | 1 | 0.473291 | 0.676737 | -5.231094 |-9.827189e+00 |-7.658855e-01 |
| 941 |23.5250 | 1 | 0.474442 | 0.677697 | -5.228548 |-9.828146e+00 |-7.658074e-01 |
| 942 |23.5500 | 1 | 0.485998 | 0.658387 | -5.226139 |-9.829110e+00 |-7.657288e-01 |
| 943 |23.5750 | 1 | 0.514283 | 0.634293 | -5.223562 |-9.830079e+00 |-7.656495e-01 |
| 944 |23.6000 | 1 | 0.516713 | 0.646159 | -5.221143 |-9.831053e+00 |-7.655697e-01 |
| 945 |23.6250 | 1 | 0.509222 | 0.641191 | -5.218806 |-9.832034e+00 |-7.654894e-01 |
| 946 |23.6500 | 1 | 0.511243 | 0.639904 | -5.216415 |-9.833020e+00 |-7.654084e-01 |
| 947 |23.6750 | 1 | 0.504852 | 0.645054 | -5.214173 |-9.834012e+00 |-7.653270e-01 |
| 948 |23.7000 | 1 | 0.481507 | 0.668694 | -5.211857 |-9.835010e+00 |-7.652450e-01 |
| 949 |23.7250 | 1 | 0.478430 | 0.667698 | -5.209544 |-9.836013e+00 |-7.651624e-01 |
| 950 |23.7500 | 1 | 0.473767 | 0.672205 | -5.207393 |-9.837021e+00 |-7.650793e-01 |
| 951 |23.7750 | 1 | 0.477168 | 0.673745 | -5.205109 |-9.838035e+00 |-7.649957e-01 |
| 952 |23.8000 | 1 | 0.473230 | 0.681051 | -5.203066 |-9.839054e+00 |-7.649116e-01 |
| 953 |23.8250 | 1 | 0.474712 | 0.669055 | -5.200959 |-9.840078e+00 |-7.648270e-01 |
| 954 |23.8500 | 1 | 0.478994 | 0.672140 | -5.198806 |-9.841107e+00 |-7.647419e-01 |
| 955 |23.8750 | 1 | 0.510193 | 0.643556 | -5.196823 |-9.842141e+00 |-7.646563e-01 |
| 956 |23.9000 | 1 | 0.510342 | 0.649685 | -5.194717 |-9.843180e+00 |-7.645702e-01 |
| 957 |23.9250 | 1 | 0.502699 | 0.645553 | -5.192758 |-9.844224e+00 |-7.644836e-01 |
| 958 |23.9500 | 1 | 0.509565 | 0.643627 | -5.190837 |-9.845273e+00 |-7.643966e-01 |
| 959 |23.9750 | 1 | 0.505842 | 0.650800 | -5.188929 |-9.846327e+00 |-7.643091e-01 |
| 960 |24.0000 | 1 | 0.509080 | 0.639700 | -5.187018 |-9.847385e+00 |-7.642211e-01 |
| 961 |24.0250 | 1 | 0.506969 | 0.643642 | -5.185180 |-9.848448e+00 |-7.641327e-01 |
| 962 |24.0500 | 1 | 0.502202 | 0.644327 | -5.183292 |-9.849515e+00 |-7.640438e-01 |
| 963 |24.0750 | 1 | 0.504608 | 0.646704 | -5.181523 |-9.850587e+00 |-7.639545e-01 |
| 964 |24.1000 | 1 | 0.506113 | 0.640549 | -5.179790 |-9.851663e+00 |-7.638648e-01 |
| 965 |24.1250 | 1 | 0.516273 | 0.650328 | -5.178029 |-9.852743e+00 |-7.637746e-01 |
| 966 |24.1500 | 1 | 0.514624 | 0.656699 | -5.176397 |-9.853828e+00 |-7.636840e-01 |
| 967 |24.1750 | 1 | 0.509777 | 0.652485 | -5.174642 |-9.854916e+00 |-7.635931e-01 |
| 968 |24.2000 | 1 | 0.506223 | 0.644373 | -5.173014 |-9.856009e+00 |-7.635017e-01 |
| 969 |24.2250 | 1 | 0.497977 | 0.651589 | -5.171420 |-9.857106e+00 |-7.634099e-01 |
| 970 |24.2500 | 1 | 0.542505 | 0.823516 | -5.169807 |-9.858206e+00 |-7.633177e-01 |
| 971 |24.2750 | 1 | 0.458664 | 0.726943 | -5.168319 |-9.859311e+00 |-7.632251e-01 |
| 972 |24.3000 | 1 | 0.501798 | 0.644348 | -5.166790 |-9.860419e+00 |-7.631322e-01 |
| 973 |24.3250 | 1 | 0.514156 | 0.663782 | -5.165249 |-9.861531e+00 |-7.630389e-01 |
| 974 |24.3500 | 1 | 0.509705 | 0.649251 | -5.163825 |-9.862646e+00 |-7.629452e-01 |
| 975 |24.3750 | 1 | 0.500570 | 0.646102 | -5.162345 |-9.863765e+00 |-7.628512e-01 |
| 976 |24.4000 | 1 | 0.501039 | 0.644028 | -5.160961 |-9.864888e+00 |-7.627568e-01 |
| 977 |24.4250 | 1 | 0.504128 | 0.646994 | -5.159634 |-9.866014e+00 |-7.626621e-01 |
| 978 |24.4500 | 1 | 0.509705 | 0.643946 | -5.158234 |-9.867143e+00 |-7.625670e-01 |
| 979 |24.4750 | 1 | 0.504889 | 0.642303 | -5.156955 |-9.868275e+00 |-7.624717e-01 |
| 980 |24.5000 | 1 | 0.511998 | 0.654649 | -5.155620 |-9.869411e+00 |-7.623759e-01 |
| 981 |24.5250 | 1 | 0.505531 | 0.643071 | -5.154346 |-9.870549e+00 |-7.622799e-01 |
| 982 |24.5500 | 1 | 0.505855 | 0.644088 | -5.153156 |-9.871691e+00 |-7.621836e-01 |
| 983 |24.5750 | 1 | 0.503710 | 0.643562 | -5.151921 |-9.872835e+00 |-7.620870e-01 |
| 984 |24.6000 | 1 | 0.503625 | 0.652749 | -5.150775 |-9.873983e+00 |-7.619900e-01 |
| 985 |24.6250 | 1 | 0.497902 | 0.668819 | -5.149604 |-9.875133e+00 |-7.618928e-01 |
| 986 |24.6500 | 1 | 0.508365 | 0.655839 | -5.148454 |-9.876286e+00 |-7.617953e-01 |
| 987 |24.6750 | 1 | 0.499875 | 0.649295 | -5.147360 |-9.877441e+00 |-7.616975e-01 |
| 988 |24.7000 | 1 | 0.507928 | 0.651539 | -5.146301 |-9.878599e+00 |-7.615995e-01 |
| 989 |24.7250 | 1 | 0.504901 | 0.643364 | -5.145247 |-9.879760e+00 |-7.615012e-01 |
| 990 |24.7500 | 1 | 0.496468 | 0.650975 | -5.144263 |-9.880923e+00 |-7.614026e-01 |
| 991 |24.7750 | 1 | 0.485625 | 0.660757 | -5.143244 |-9.882088e+00 |-7.613038e-01 |
| 992 |24.8000 | 1 | 0.511090 | 0.655112 | -5.142258 |-9.883256e+00 |-7.612048e-01 |
| 993 |24.8250 | 1 | 0.499859 | 0.652944 | -5.141341 |-9.884426e+00 |-7.611055e-01 |
| 994 |24.8500 | 1 | 0.503584 | 0.657031 | -5.140395 |-9.885598e+00 |-7.610060e-01 |
| 995 |24.8750 | 1 | 0.487252 | 0.669019 | -5.139545 |-9.886772e+00 |-7.609062e-01 |
| 996 |24.9000 | 1 | 0.486750 | 0.677291 | -5.138686 |-9.887948e+00 |-7.608063e-01 |
| 997 |24.9250 | 1 | 0.499252 | 0.655279 | -5.137821 |-9.889126e+00 |-7.607061e-01 |
| 998 |24.9500 | 1 | 0.490417 | 0.702562 | -5.137027 |-9.890305e+00 |-7.606058e-01 |
| 999 |24.9750 | 1 | 0.503546 | 0.651132 | -5.136210 |-9.891487e+00 |-7.605052e-01 |
| 1000 |25.0000 | 1 | 0.483413 | 0.668655 | -5.135456 |-9.892670e+00 |-7.604045e-01 |
| 1001 |25.0250 | 1 | 0.493134 | 0.660787 | -5.134750 |-9.893855e+00 |-7.603035e-01 |
| 1002 |25.0500 | 1 | 0.499426 | 0.657750 | -5.134009 |-9.895041e+00 |-7.602024e-01 |
| 1003 |25.0750 | 1 | 0.494080 | 0.661456 | -5.133351 |-9.896229e+00 |-7.601011e-01 |
| 1004 |25.1000 | 1 | 0.507680 | 0.664709 | -5.132659 |-9.897418e+00 |-7.599997e-01 |
| 1005 |25.1250 | 1 | 0.494671 | 0.669049 | -5.132007 |-9.898609e+00 |-7.598981e-01 |
| 1006 |25.1500 | 1 | 0.509767 | 0.652732 | -5.131421 |-9.899801e+00 |-7.597964e-01 |
| 1007 |25.1750 | 1 | 0.495492 | 0.653077 | -5.130814 |-9.900994e+00 |-7.596945e-01 |
| 1008 |25.2000 | 1 | 0.498837 | 0.670956 | -5.130269 |-9.902188e+00 |-7.595924e-01 |
| 1009 |25.2250 | 1 | 0.500010 | 0.651370 | -5.129726 |-9.903383e+00 |-7.594903e-01 |
| 1010 |25.2500 | 1 | 0.499026 | 0.649779 | -5.129186 |-9.904579e+00 |-7.593880e-01 |
| 1011 |25.2750 | 1 | 0.503929 | 0.657456 | -5.128693 |-9.905776e+00 |-7.592856e-01 |
| 1012 |25.3000 | 1 | 0.502894 | 0.652709 | -5.128228 |-9.906974e+00 |-7.591831e-01 |
| 1013 |25.3250 | 1 | 0.493295 | 0.659944 | -5.127776 |-9.908173e+00 |-7.590805e-01 |
| 1014 |25.3500 | 1 | 0.496672 | 0.655548 | -5.127374 |-9.909372e+00 |-7.589777e-01 |
| 1015 |25.3750 | 1 | 0.496958 | 0.668447 | -5.126963 |-9.910572e+00 |-7.588749e-01 |
| 1016 |25.4000 | 1 | 0.477043 | 0.671800 | -5.126575 |-9.911773e+00 |-7.587720e-01 |
| 1017 |25.4250 | 1 | 0.493859 | 0.660183 | -5.126228 |-9.912974e+00 |-7.586690e-01 |
| 1018 |25.4500 | 1 | 0.497632 | 0.654123 | -5.125876 |-9.914176e+00 |-7.585660e-01 |
| 1019 |25.4750 | 1 | 0.502519 | 0.653777 | -5.125597 |-9.915378e+00 |-7.584628e-01 |
| 1020 |25.5000 | 1 | 0.499899 | 0.652161 | -5.125308 |-9.916580e+00 |-7.583596e-01 |
| 1021 |25.5250 | 1 | 0.505590 | 0.660761 | -5.125039 |-9.917782e+00 |-7.582564e-01 |
| 1022 |25.5500 | 1 | 0.499622 | 0.658219 | -5.124808 |-9.918985e+00 |-7.581531e-01 |
| 1023 |25.5750 | 1 | 0.494296 | 0.658807 | -5.124571 |-9.920187e+00 |-7.580498e-01 |
| 1024 |25.6000 | 1 | 0.499221 | 0.654806 | -5.124375 |-9.921390e+00 |-7.579464e-01 |
| 1025 |25.6250 | 1 | 0.499540 | 0.652259 | -5.124226 |-9.922592e+00 |-7.578430e-01 |
| 1026 |25.6500 | 1 | 0.497204 | 0.653026 | -5.124062 |-9.923795e+00 |-7.577395e-01 |
| 1027 |25.6750 | 1 | 0.498324 | 0.660967 | -5.123947 |-9.924997e+00 |-7.576361e-01 |
| 1028 |25.7000 | 1 | 0.495586 | 0.657316 | -5.123838 |-9.926199e+00 |-7.575326e-01 |
| 1029 |25.7250 | 1 | 0.495336 | 0.659465 | -5.123735 |-9.927401e+00 |-7.574291e-01 |
| 1030 |25.7500 | 1 | 0.498829 | 0.654207 | -5.123691 |-9.928602e+00 |-7.573256e-01 |
| 1031 |25.7750 | 1 | 0.496229 | 0.656042 | -5.123643 |-9.929803e+00 |-7.572221e-01 |
| 1032 |25.8000 | 1 | 0.498100 | 0.658060 | -5.123639 |-9.931003e+00 |-7.571187e-01 |
| 1033 |25.8250 | 1 | 0.493844 | 0.656294 | -5.123650 |-9.932203e+00 |-7.570152e-01 |
| 1034 |25.8500 | 1 | 0.496206 | 0.652885 | -5.123656 |-9.933402e+00 |-7.569118e-01 |
| 1035 |25.8750 | 1 | 0.493092 | 0.655715 | -5.123718 |-9.934600e+00 |-7.568084e-01 |
| 1036 |25.9000 | 1 | 0.499616 | 0.658027 | -5.123774 |-9.935798e+00 |-7.567050e-01 |
| 1037 |25.9250 | 1 | 0.491226 | 0.658937 | -5.123870 |-9.936995e+00 |-7.566016e-01 |
| 1038 |25.9500 | 1 | 0.500340 | 0.653876 | -5.124001 |-9.938190e+00 |-7.564983e-01 |
| 1039 |25.9750 | 1 | 0.495677 | 0.650797 | -5.124126 |-9.939385e+00 |-7.563951e-01 |
| 1040 |26.0000 | 1 | 0.476759 | 0.680443 | -5.124280 |-9.940579e+00 |-7.562919e-01 |
| 1041 |26.0250 | 1 | 0.488234 | 0.659470 | -5.124460 |-9.941772e+00 |-7.561888e-01 |
| 1042 |26.0500 | 1 | 0.504142 | 0.662927 | -5.124649 |-9.942963e+00 |-7.560857e-01 |
| 1043 |26.0750 | 1 | 0.493124 | 0.657806 | -5.124875 |-9.944154e+00 |-7.559827e-01 |
| 1044 |26.1000 | 1 | 0.494713 | 0.663481 | -5.125130 |-9.945343e+00 |-7.558798e-01 |
| 1045 |26.1250 | 1 | 0.490307 | 0.656816 | -5.125384 |-9.946530e+00 |-7.557770e-01 |
| 1046 |26.1500 | 1 | 0.484677 | 0.662911 | -5.125675 |-9.947717e+00 |-7.556742e-01 |
| 1047 |26.1750 | 1 | 0.493045 | 0.654708 | -5.125970 |-9.948901e+00 |-7.555716e-01 |
| 1048 |26.2000 | 1 | 0.538497 | 0.726460 | -5.126294 |-9.950085e+00 |-7.554690e-01 |
| 1049 |26.2250 | 1 | 0.549513 | 0.737299 | -5.126653 |-9.951266e+00 |-7.553666e-01 |
| 1050 |26.2500 | 1 | 0.492540 | 0.664606 | -5.127014 |-9.952446e+00 |-7.552643e-01 |
| 1051 |26.2750 | 1 | 0.493577 | 0.659932 | -5.127419 |-9.953625e+00 |-7.551620e-01 |
| 1052 |26.3000 | 1 | 0.467239 | 0.712753 | -5.127825 |-9.954801e+00 |-7.550599e-01 |
| 1053 |26.3250 | 1 | 0.455075 | 0.725685 | -5.128240 |-9.955976e+00 |-7.549580e-01 |
| 1054 |26.3500 | 1 | 0.475621 | 0.676184 | -5.128711 |-9.957149e+00 |-7.548561e-01 |
| 1055 |26.3750 | 1 | 0.534025 | 0.705199 | -5.129171 |-9.958320e+00 |-7.547544e-01 |
| 1056 |26.4000 | 1 | 0.535417 | 0.733416 | -5.129674 |-9.959488e+00 |-7.546529e-01 |
| 1057 |26.4250 | 1 | 0.490559 | 0.667110 | -5.130201 |-9.960655e+00 |-7.545515e-01 |
| 1058 |26.4500 | 1 | 0.492721 | 0.667776 | -5.130724 |-9.961820e+00 |-7.544502e-01 |
| 1059 |26.4750 | 1 | 0.469686 | 0.716404 | -5.131284 |-9.962982e+00 |-7.543491e-01 |
| 1060 |26.5000 | 1 | 0.461801 | 0.727427 | -5.131858 |-9.964142e+00 |-7.542482e-01 |
| 1061 |26.5250 | 1 | 0.464589 | 0.694128 | -5.132457 |-9.965300e+00 |-7.541474e-01 |
| 1062 |26.5500 | 1 | 0.471781 | 0.706331 | -5.133085 |-9.966456e+00 |-7.540468e-01 |
| 1063 |26.5750 | 1 | 0.459214 | 0.698293 | -5.133724 |-9.967609e+00 |-7.539464e-01 |
| 1064 |26.6000 | 1 | 0.465039 | 0.701240 | -5.134387 |-9.968759e+00 |-7.538461e-01 |
| 1065 |26.6250 | 1 | 0.469236 | 0.698958 | -5.135067 |-9.969907e+00 |-7.537461e-01 |
| 1066 |26.6500 | 1 | 0.464358 | 0.702767 | -5.135759 |-9.971053e+00 |-7.536462e-01 |
| 1067 |26.6750 | 1 | 0.465766 | 0.699608 | -5.136493 |-9.972195e+00 |-7.535466e-01 |
| 1068 |26.7000 | 1 | 0.459619 | 0.698973 | -5.084913 |-9.973335e+00 |-7.534475e-01 |
| 1069 |26.7250 | 1 | 0.476216 | 0.700416 | -5.145987 |-9.974473e+00 |-7.533490e-01 |
| 1070 |26.7500 | 1 | 0.480763 | 0.738047 | -5.138887 |-9.975607e+00 |-7.532503e-01 |
| 1071 |26.7750 | 1 | 0.461171 | 0.701831 | -5.135784 |-9.976739e+00 |-7.531516e-01 |
| 1072 |26.8000 | 1 | 0.447415 | 0.732048 | -5.142042 |-9.977868e+00 |-7.530534e-01 |
| 1073 |26.8250 | 1 | 0.463453 | 0.697525 | -5.138247 |-9.978994e+00 |-7.529551e-01 |
| 1074 |26.8500 | 1 | 0.461543 | 0.697473 | -5.135863 |-9.980116e+00 |-7.528572e-01 |
| 1075 |26.8750 | 1 | 0.457196 | 0.716596 | -5.141322 |-9.981236e+00 |-7.527593e-01 |
| 1076 |26.9000 | 1 | 0.468679 | 0.696296 | -5.138910 |-9.982352e+00 |-7.526616e-01 |
| 1077 |26.9250 | 1 | 0.461713 | 0.706081 | -5.146215 |-9.983465e+00 |-7.525640e-01 |
| 1078 |26.9500 | 1 | 0.466057 | 0.697697 | -5.150453 |-9.984575e+00 |-7.524668e-01 |
| 1079 |26.9750 | 1 | 0.464665 | 0.702892 | -5.143797 |-9.985682e+00 |-7.523698e-01 |
| 1080 |27.0000 | 1 | 0.460304 | 0.700288 | -5.148337 |-9.986785e+00 |-7.522730e-01 |
| 1081 |27.0250 | 1 | 0.487071 | 0.704852 | -5.146060 |-9.987885e+00 |-7.521765e-01 |
| 1082 |27.0500 | 1 | 0.491921 | 0.701263 | -5.148301 |-9.988981e+00 |-7.520802e-01 |
| 1083 |27.0750 | 1 | 0.514891 | 0.691098 | -5.155984 |-9.990075e+00 |-7.519842e-01 |
| 1084 |27.1000 | 1 | 0.511289 | 0.700004 | -5.152389 |-9.991164e+00 |-7.518885e-01 |
| 1085 |27.1250 | 1 | 0.464907 | 0.689621 | -5.154942 |-9.992250e+00 |-7.517932e-01 |
| 1086 |27.1500 | 1 | 0.522192 | 0.703924 | -5.152321 |-9.993332e+00 |-7.516980e-01 |
| 1087 |27.1750 | 1 | 0.482099 | 0.686301 | -5.150296 |-9.994411e+00 |-7.516032e-01 |
| 1088 |27.2000 | 1 | 0.484473 | 0.666338 | -5.158286 |-9.995485e+00 |-7.515087e-01 |
| 1089 |27.2250 | 1 | 0.465606 | 0.714366 | -5.158936 |-9.996557e+00 |-7.514145e-01 |
| 1090 |27.2500 | 1 | 0.455517 | 0.696506 | -5.159762 |-9.997624e+00 |-7.513207e-01 |
| 1091 |27.2750 | 1 | 0.466815 | 0.703345 | -5.162399 |-9.998687e+00 |-7.512272e-01 |
| 1092 |27.3000 | 1 | 0.456211 | 0.701992 | -5.156860 |-9.999747e+00 |-7.511339e-01 |
| 1093 |27.3250 | 1 | 0.465226 | 0.696526 | -5.159533 |-1.000080e+01 |-7.510410e-01 |
| 1094 |27.3500 | 1 | 0.512126 | 0.700777 | -5.164709 |-1.000185e+01 |-7.509483e-01 |
| 1095 |27.3750 | 1 | 0.479834 | 0.671114 | -5.164529 |-1.000290e+01 |-7.508561e-01 |
| 1096 |27.4000 | 1 | 0.492537 | 0.673946 | -5.170199 |-1.000394e+01 |-7.507642e-01 |
| 1097 |27.4250 | 1 | 0.489561 | 0.672850 | -5.167845 |-1.000498e+01 |-7.506725e-01 |
| 1098 |27.4500 | 1 | 0.488160 | 0.668952 | -5.165967 |-1.000602e+01 |-7.505812e-01 |
| 1099 |27.4750 | 1 | 0.519246 | 0.695777 | -5.169713 |-1.000705e+01 |-7.504902e-01 |
| 1100 |27.5000 | 1 | 0.489192 | 0.667250 | -5.170115 |-1.000808e+01 |-7.503995e-01 |
| 1101 |27.5250 | 1 | 0.499167 | 0.682266 | -5.175767 |-1.000910e+01 |-7.503093e-01 |
| 1102 |27.5500 | 1 | 0.492088 | 0.672850 | -5.178382 |-1.001011e+01 |-7.502193e-01 |
| 1103 |27.5750 | 1 | 0.487768 | 0.663787 | -5.175107 |-1.001113e+01 |-7.501297e-01 |
| 1104 |27.6000 | 1 | 0.493979 | 0.674322 | -5.178327 |-1.001214e+01 |-7.500404e-01 |
| 1105 |27.6250 | 1 | 0.490692 | 0.663366 | -5.177274 |-1.001314e+01 |-7.499515e-01 |
| 1106 |27.6500 | 1 | 0.492805 | 0.674422 | -5.178603 |-1.001414e+01 |-7.498630e-01 |
| 1107 |27.6750 | 1 | 0.485858 | 0.664090 | -5.187219 |-1.001513e+01 |-7.497748e-01 |
| 1108 |27.7000 | 1 | 0.486335 | 0.663156 | -5.184418 |-1.001613e+01 |-7.496872e-01 |
| 1109 |27.7250 | 1 | 0.494404 | 0.702291 | -5.186787 |-1.001711e+01 |-7.495997e-01 |
| 1110 |27.7500 | 1 | 0.446076 | 0.705973 | -5.187599 |-1.001809e+01 |-7.495127e-01 |
| 1111 |27.7750 | 1 | 0.482750 | 0.662560 | -5.184811 |-1.001907e+01 |-7.494261e-01 |
| 1112 |27.8000 | 1 | 0.476889 | 0.669748 | -5.191664 |-1.002004e+01 |-7.493398e-01 |
| 1113 |27.8250 | 1 | 0.492741 | 0.670303 | -5.192749 |-1.002101e+01 |-7.492541e-01 |
| 1114 |27.8500 | 1 | 0.481042 | 0.663581 | -5.195669 |-1.002197e+01 |-7.491686e-01 |
| 1115 |27.8750 | 1 | 0.484773 | 0.664162 | -5.197804 |-1.002292e+01 |-7.490836e-01 |
| 1116 |27.9000 | 1 | 0.471439 | 0.679314 | -5.194899 |-1.002388e+01 |-7.489990e-01 |
| 1117 |27.9250 | 1 | 0.484387 | 0.664117 | -5.198012 |-1.002482e+01 |-7.489147e-01 |
| 1118 |27.9500 | 1 | 0.485070 | 0.664848 | -5.200681 |-1.002576e+01 |-7.488309e-01 |
| 1119 |27.9750 | 1 | 0.483672 | 0.663051 | -5.202168 |-1.002670e+01 |-7.487475e-01 |
| 1120 |28.0000 | 1 | 0.483831 | 0.665529 | -5.208302 |-1.002763e+01 |-7.486645e-01 |
| 1121 |28.0250 | 1 | 0.486482 | 0.662659 | -5.207243 |-1.002856e+01 |-7.485818e-01 |
| 1122 |28.0500 | 1 | 0.484792 | 0.665026 | -5.206583 |-1.002948e+01 |-7.484996e-01 |
| 1123 |28.0750 | 1 | 0.484451 | 0.669203 | -5.210633 |-1.003040e+01 |-7.484179e-01 |
| 1124 |28.1000 | 1 | 0.483054 | 0.665843 | -5.210285 |-1.003131e+01 |-7.483365e-01 |
| 1125 |28.1250 | 1 | 0.479900 | 0.666058 | -5.215282 |-1.003221e+01 |-7.482556e-01 |
| 1126 |28.1500 | 1 | 0.481851 | 0.666201 | -5.219299 |-1.003311e+01 |-7.481751e-01 |
| 1127 |28.1750 | 1 | 0.483100 | 0.663770 | -5.218610 |-1.003401e+01 |-7.480950e-01 |
| 1128 |28.2000 | 1 | 0.485134 | 0.663042 | -5.220768 |-1.003490e+01 |-7.480154e-01 |
| 1129 |28.2250 | 1 | 0.489655 | 0.667828 | -5.221060 |-1.003578e+01 |-7.479362e-01 |
| 1130 |28.2500 | 1 | 0.480716 | 0.672463 | -5.223165 |-1.003666e+01 |-7.478574e-01 |
| 1131 |28.2750 | 1 | 0.483455 | 0.666447 | -5.228675 |-1.003753e+01 |-7.477791e-01 |
| 1132 |28.3000 | 1 | 0.483978 | 0.671011 | -5.229529 |-1.003840e+01 |-7.477012e-01 |
| 1133 |28.3250 | 1 | 0.475710 | 0.669280 | -5.232726 |-1.003926e+01 |-7.476238e-01 |
| 1134 |28.3500 | 1 | 0.479361 | 0.669395 | -5.234044 |-1.004012e+01 |-7.475468e-01 |
| 1135 |28.3750 | 1 | 0.496386 | 0.682017 | -5.232092 |-1.004097e+01 |-7.474703e-01 |
| 1136 |28.4000 | 1 | 0.485283 | 0.674847 | -5.238405 |-1.004182e+01 |-7.473943e-01 |
| 1137 |28.4250 | 1 | 0.479666 | 0.672826 | -5.240062 |-1.004266e+01 |-7.473187e-01 |
| 1138 |28.4500 | 1 | 0.479845 | 0.676287 | -5.242591 |-1.004349e+01 |-7.472436e-01 |
| 1139 |28.4750 | 1 | 0.481158 | 0.666536 | -5.247594 |-1.004432e+01 |-7.471689e-01 |
| 1140 |28.5000 | 1 | 0.483141 | 0.667308 | -5.245477 |-1.004514e+01 |-7.470948e-01 |
| 1141 |28.5250 | 1 | 0.486443 | 0.666994 | -5.248138 |-1.004596e+01 |-7.470210e-01 |
| 1142 |28.5500 | 1 | 0.479723 | 0.665961 | -5.251076 |-1.004677e+01 |-7.469478e-01 |
| 1143 |28.5750 | 1 | 0.478889 | 0.668256 | -5.253471 |-1.004757e+01 |-7.468750e-01 |
| 1144 |28.6000 | 1 | 0.480882 | 0.666810 | -5.258529 |-1.004837e+01 |-7.468027e-01 |
| 1145 |28.6250 | 1 | 0.474088 | 0.675753 | -5.259920 |-1.004917e+01 |-7.467310e-01 |
| 1146 |28.6500 | 1 | 0.480283 | 0.668231 | -5.261212 |-1.004995e+01 |-7.466596e-01 |
| 1147 |28.6750 | 1 | 0.480788 | 0.674629 | -5.263745 |-1.005073e+01 |-7.465887e-01 |
| 1148 |28.7000 | 1 | 0.480191 | 0.669986 | -5.264326 |-1.005151e+01 |-7.465184e-01 |
| 1149 |28.7250 | 1 | 0.470319 | 0.675661 | -5.269713 |-1.005228e+01 |-7.464485e-01 |
| 1150 |28.7500 | 1 | 0.480411 | 0.673238 | -5.273651 |-1.005304e+01 |-7.463791e-01 |
| 1151 |28.7750 | 1 | 0.473258 | 0.678330 | -5.274198 |-1.005380e+01 |-7.463102e-01 |
| 1152 |28.8000 | 1 | 0.478426 | 0.670399 | -5.278360 |-1.005455e+01 |-7.462418e-01 |
| 1153 |28.8250 | 1 | 0.481835 | 0.677192 | -5.278659 |-1.005530e+01 |-7.461739e-01 |
| 1154 |28.8500 | 1 | 0.477153 | 0.671792 | -5.280378 |-1.005604e+01 |-7.461065e-01 |
| 1155 |28.8750 | 1 | 0.483710 | 0.675545 | -5.286094 |-1.005677e+01 |-7.460396e-01 |
| 1156 |28.9000 | 1 | 0.478907 | 0.667440 | -5.288677 |-1.005750e+01 |-7.459732e-01 |
| 1157 |28.9250 | 1 | 0.476032 | 0.683400 | -5.291475 |-1.005822e+01 |-7.459074e-01 |
| 1158 |28.9500 | 1 | 0.478212 | 0.670153 | -5.294549 |-1.005893e+01 |-7.458420e-01 |
| 1159 |28.9750 | 1 | 0.490696 | 0.674169 | -5.294755 |-1.005964e+01 |-7.457771e-01 |
| 1160 |29.0000 | 1 | 0.478562 | 0.668860 | -5.298482 |-1.006034e+01 |-7.457127e-01 |
| 1161 |29.0250 | 1 | 0.477472 | 0.670187 | -5.301871 |-1.006104e+01 |-7.456489e-01 |
| 1162 |29.0500 | 1 | 0.481258 | 0.684804 | -5.305298 |-1.006173e+01 |-7.455856e-01 |
| 1163 |29.0750 | 1 | 0.460059 | 0.686929 | -5.310364 |-1.006241e+01 |-7.455228e-01 |
| 1164 |29.1000 | 1 | 0.448954 | 0.699926 | -5.310048 |-1.006309e+01 |-7.454605e-01 |
| 1165 |29.1250 | 1 | 0.453478 | 0.709623 | -5.313561 |-1.006376e+01 |-7.453987e-01 |
| 1166 |29.1500 | 1 | 0.445714 | 0.707670 | -5.316738 |-1.006442e+01 |-7.453374e-01 |
| 1167 |29.1750 | 1 | 0.452987 | 0.698719 | -5.318177 |-1.006508e+01 |-7.452767e-01 |
| 1168 |29.2000 | 1 | 0.449597 | 0.705269 | -5.325022 |-1.006573e+01 |-7.452165e-01 |
| 1169 |29.2250 | 1 | 0.490915 | 0.676666 | -5.327513 |-1.006637e+01 |-7.451568e-01 |
| 1170 |29.2500 | 1 | 0.449594 | 0.712068 | -5.328948 |-1.006701e+01 |-7.450977e-01 |
| 1171 |29.2750 | 1 | 0.457821 | 0.707891 | -5.332960 |-1.006764e+01 |-7.450391e-01 |
| 1172 |29.3000 | 1 | 0.451920 | 0.700959 | -5.334478 |-1.006827e+01 |-7.449809e-01 |
| 1173 |29.3250 | 1 | 0.457635 | 0.705507 | -5.338479 |-1.006889e+01 |-7.449234e-01 |
| 1174 |29.3500 | 1 | 0.447267 | 0.700000 | -5.343494 |-1.006950e+01 |-7.448664e-01 |
| 1175 |29.3750 | 1 | 0.458476 | 0.705746 | -5.346398 |-1.007011e+01 |-7.448099e-01 |
| 1176 |29.4000 | 1 | 0.450082 | 0.701366 | -5.350024 |-1.007071e+01 |-7.447539e-01 |
| 1177 |29.4250 | 1 | 0.476268 | 0.681734 | -5.351738 |-1.007130e+01 |-7.446985e-01 |
| 1178 |29.4500 | 1 | 0.460729 | 0.691428 | -5.354504 |-1.007189e+01 |-7.446436e-01 |
| 1179 |29.4750 | 1 | 0.457731 | 0.717534 | -5.359754 |-1.007247e+01 |-7.445893e-01 |
| 1180 |29.5000 | 1 | 0.448818 | 0.702547 | -5.362285 |-1.007304e+01 |-7.445355e-01 |
| 1181 |29.5250 | 1 | 0.444427 | 0.710591 | -5.367519 |-1.007361e+01 |-7.444822e-01 |
| 1182 |29.5500 | 1 | 0.449657 | 0.703114 | -5.371200 |-1.007417e+01 |-7.444295e-01 |
| 1183 |29.5750 | 1 | 0.440618 | 0.711450 | -5.371774 |-1.007472e+01 |-7.443773e-01 |
| 1184 |29.6000 | 1 | 0.446356 | 0.706056 | -5.376509 |-1.007527e+01 |-7.443257e-01 |
| 1185 |29.6250 | 1 | 0.448475 | 0.708371 | -5.380511 |-1.007581e+01 |-7.442746e-01 |
| 1186 |29.6500 | 1 | 0.448725 | 0.706641 | -5.383604 |-1.007634e+01 |-7.442241e-01 |
| 1187 |29.6750 | 1 | 0.467714 | 0.685492 | -5.389558 |-1.007687e+01 |-7.441741e-01 |
| 1188 |29.7000 | 1 | 0.469720 | 0.679917 | -5.392343 |-1.007739e+01 |-7.441247e-01 |
| 1189 |29.7250 | 1 | 0.472234 | 0.676739 | -5.394581 |-1.007790e+01 |-7.440758e-01 |
| 1190 |29.7500 | 1 | 0.471790 | 0.681953 | -5.398936 |-1.007841e+01 |-7.440275e-01 |
| 1191 |29.7750 | 1 | 0.467655 | 0.680340 | -5.401760 |-1.007891e+01 |-7.439797e-01 |
| 1192 |29.8000 | 1 | 0.474229 | 0.672687 | -5.407802 |-1.007940e+01 |-7.439325e-01 |
| 1193 |29.8250 | 1 | 0.476449 | 0.675359 | -5.411367 |-1.007989e+01 |-7.438858e-01 |
| 1194 |29.8500 | 1 | 0.476582 | 0.678527 | -5.415002 |-1.008037e+01 |-7.438397e-01 |
| 1195 |29.8750 | 1 | 0.472185 | 0.686604 | -5.419606 |-1.008084e+01 |-7.437942e-01 |
| 1196 |29.9000 | 1 | 0.471914 | 0.678537 | -5.420797 |-1.008131e+01 |-7.437492e-01 |
| 1197 |29.9250 | 1 | 0.466368 | 0.687928 | -5.426230 |-1.008177e+01 |-7.437047e-01 |
| 1198 |29.9500 | 1 | 0.471255 | 0.677494 | -5.431831 |-1.008222e+01 |-7.436608e-01 |
| 1199 |29.9750 | 1 | 0.474277 | 0.679189 | -5.434645 |-1.008267e+01 |-7.436175e-01 |
| 1200 |30.0000 | 1 | 0.470302 | 0.680280 | -5.440101 |-1.008311e+01 |-7.435748e-01 |
...Finished
FINISHED - Elapsed time = 897.2004556 seconds
FINISHED - CPU process time = 1055.3392616 seconds
The resulting data structure that is returned from the call to main
contains all the time-dependant variables for both the structural and aerodynamic solvers.
timestep_info
can be found in case_data.structure
and case_data.aero
. It is an array with custom-made structure to contain the data of each solver.
In the .sharpy
file, we can see which solvers are run:
flow = ['BeamLoader',
'AerogridLoader',
'StaticTrim',
'BeamLoads',
'AerogridPlot',
'BeamPlot',
'DynamicCoupled',
]
In order:
BeamLoader: reads the
fem.h5
file and generates the structure for the beam solver.AerogridLoader: reads the
aero.h5
file and generates the aerodynamic grid for the aerodynamic solver.StaticTrim: this solver performs a longitudinal trim (Thrust, Angle of attack and Elevator deflection) using the StaticCoupled solver.
BeamLoads: calculates the internal beam loads for the static solution
AerogridPlot: outputs the aerodynamic grid for the static solution.
BeamPlot: outputs the structural discretisation for the static solution.
DynamicCoupled: is the main driver of the dynamic simulation: executes the structural and aerodynamic solvers and couples both. Every converged time step is followed by a BeamLoads, AerogridPlot and BeamPlot execution.
Structural data organisation¶
The timestep_info
structure contains several relevant variables:
for_pos
: position of the body-attached frame of reference in inertial FoR.for_vel
: velocity (in body FoR) of the body FoR wrt inertial FoR.pos
: nodal position in A FoR.psi
: nodal rotations (from the material B FoR to A FoR) in a Cartesian Rotation Vector parametrisation.applied_steady_forces
: nodal forces from the aero solver and the applied forces.postproc_cell
: is a dictionary that contains the variables generated by a postprocessor, such as the internal beam loads.
The structural timestep_info
also contains some useful variables:
cag
andcga
return \(C^{AG}\) and \(C^{GA}\), the rotation matrices from the body-attached (A) FoR to the inertial (G).glob_pos
rotates thepos
variable to give you the inertial nodal position. Ifinclude_rbm = True
is passed,for_pos
is added to it.
Aerodynamic data organisation¶
The aerodynamic datastructure can be found in case_data.aero.timestep_info
. It contains useful variables, such as:
dimensions
anddimensions_star
: gives the dimensions of every surface and wake surface. Organised as:dimensions[i_surf, 0] = chordwise panels
,dimensions[i_surf, 1] = spanwise panels
.zeta
andzeta_star
: they are the \(G\) FoR coordinates of the surface vertices.gamma
andgamma_star
: vortex ring circulations.
Structural dynamics¶
We can now plot the rigid body dynamics:
RBM trajectory
[8]:
fig, ax = plt.subplots(1, 1, figsize=(7, 4))
# extract information
n_tsteps = len(case_data.structure.timestep_info)
xz = np.zeros((n_tsteps, 2))
for it in range(n_tsteps):
xz[it, 0] = -case_data.structure.timestep_info[it].for_pos[0] # the - is so that increasing time -> increasing x
xz[it, 1] = case_data.structure.timestep_info[it].for_pos[2]
ax.plot(xz[:, 0], xz[:, 1])
fig.suptitle('Longitudinal trajectory of the T-Tail model in a 20% 1-cos gust encounter')
ax.set_xlabel('X [m]')
ax.set_ylabel('Z [m]');
plt.show()
RBM velocities
[10]:
fig, ax = plt.subplots(3, 1, figsize=(7, 6), sharex=True)
ylabels = ['Vx [m/s]', 'Vy [m/s]', 'Vz [m/s]']
# extract information
n_tsteps = len(case_data.structure.timestep_info)
dt = case_data.settings['DynamicCoupled']['dt']
time_vec = np.linspace(0, n_tsteps*dt, n_tsteps)
for_vel = np.zeros((n_tsteps, 3))
for it in range(n_tsteps):
for_vel[it, 0:3] = case_data.structure.timestep_info[it].for_vel[0:3]
for idim in range(3):
ax[idim].plot(time_vec, for_vel[:, idim])
ax[idim].set_ylabel(ylabels[idim])
ax[2].set_xlabel('time [s]')
plt.subplots_adjust(hspace=0)
fig.suptitle('Linear RBM velocities. T-Tail model in a 20% 1-cos gust encounter');
# ax.set_xlabel('X [m]')
# ax.set_ylabel('Z [m]');
plt.show()
[12]:
fig, ax = plt.subplots(3, 1, figsize=(7, 6), sharex=True)
ylabels = ['Roll rate [deg/s]', 'Pitch rate [deg/s]', 'Yaw rate [deg/s]']
# extract information
n_tsteps = len(case_data.structure.timestep_info)
dt = case_data.settings['DynamicCoupled']['dt']
time_vec = np.linspace(0, n_tsteps*dt, n_tsteps)
for_vel = np.zeros((n_tsteps, 3))
for it in range(n_tsteps):
for_vel[it, 0:3] = case_data.structure.timestep_info[it].for_vel[3:6]*180/np.pi
for idim in range(3):
ax[idim].plot(time_vec, for_vel[:, idim])
ax[idim].set_ylabel(ylabels[idim])
ax[2].set_xlabel('time [s]')
plt.subplots_adjust(hspace=0)
fig.suptitle('Angular RBM velocities. T-Tail model in a 20% 1-cos gust encounter');
# ax.set_xlabel('X [m]')
# ax.set_ylabel('Z [m]');
plt.show()
Wing tip deformation
It is stored in timestep_info
as pos
. We need to find the correct node.
[13]:
fig, ax = plt.subplots(1, 1, figsize=(6, 6))
ax.scatter(case_data.structure.ini_info.pos[:, 0], case_data.structure.ini_info.pos[:, 1])
ax.axis('equal')
tip_node = np.argmax(case_data.structure.ini_info.pos[:, 1])
print('Wing tip node is the maximum Y one: ', tip_node)
ax.scatter(case_data.structure.ini_info.pos[tip_node, 0], case_data.structure.ini_info.pos[tip_node, 1], color='red')
plt.show()
Wing tip node is the maximum Y one: 16
We can plot now the pos[tip_node,:]
variable:
[14]:
fig, ax = plt.subplots(1, 1, figsize=(7, 3))
# extract information
n_tsteps = len(case_data.structure.timestep_info)
xz = np.zeros((n_tsteps, 2))
for it in range(n_tsteps):
xz[it, 0] = case_data.structure.timestep_info[it].pos[tip_node, 0]
xz[it, 1] = case_data.structure.timestep_info[it].pos[tip_node, 2]
ax.plot(time_vec, xz[:, 1])
# fig.suptitle('Longitudinal trajectory of the T-Tail model in a 20% 1-cos gust encounter')
ax.set_xlabel('time [s]')
ax.set_ylabel('Vertical disp. [m]');
plt.show()
[15]:
fig, ax = plt.subplots(1, 1, figsize=(7, 3))
# extract information
n_tsteps = len(case_data.structure.timestep_info)
xz = np.zeros((n_tsteps, 2))
for it in range(n_tsteps):
xz[it, 0] = case_data.structure.timestep_info[it].pos[tip_node, 0]
xz[it, 1] = case_data.structure.timestep_info[it].pos[tip_node, 2]
ax.plot(time_vec, xz[:, 0])
# fig.suptitle('Longitudinal trajectory of the T-Tail model in a 20% 1-cos gust encounter')
ax.set_xlabel('time [s]')
ax.set_ylabel('Horizontal disp. [m]\nPositive is aft');
plt.show()
Wing root loads
The wing root loads can be extracted from the postproc_cell
structure in timestep_info
.
[17]:
fig, ax = plt.subplots(3, 1, figsize=(7, 6), sharex=True)
ylabels = ['Torsion [Nm2]', 'OOP [Nm2]', 'IP [Nm2]']
# extract information
n_tsteps = len(case_data.structure.timestep_info)
dt = case_data.settings['DynamicCoupled']['dt']
time_vec = np.linspace(0, n_tsteps*dt, n_tsteps)
loads = np.zeros((n_tsteps, 3))
for it in range(n_tsteps):
loads[it, 0:3] = case_data.structure.timestep_info[it].postproc_cell['loads'][0, 3:6]
for idim in range(3):
ax[idim].plot(time_vec, loads[:, idim])
ax[idim].set_ylabel(ylabels[idim])
ax[2].set_xlabel('time [s]')
plt.subplots_adjust(hspace=0)
fig.suptitle('Wing root loads. T-Tail model in a 20% 1-cos gust encounter');
# ax.set_xlabel('X [m]')
# ax.set_ylabel('Z [m]');
plt.show()
Aerodynamic analysis¶
The aerodynamic analysis can be obviously conducted using python. However, the easiest way is to run the case by yourself and open the files in output/simple_HALE/beam
and output/simple_HALE/aero
with Paraview.
[18]:
url = 'https://raw.githubusercontent.com/ImperialCollegeLondon/sharpy/dev_doc/docs/source/content/example_notebooks/images/t-tail_solution.png'
Image(url=url, width=600)
[18]:

Asymptotic Stability of a Flying Wing in Cruise Trimmed Conditions¶
A Horten flying wing is analysed. The nonlinear trim condition is found and the system is linearised. The eigenvalues of the linearised system are then used to evaluate the stability at the cruise trimmed flight conditions.
[1]:
# required packages
import sharpy.utils.algebra as algebra
import sharpy.sharpy_main
from cases.hangar.richards_wing import Baseline
import numpy as np
import configobj
import matplotlib.pyplot as plt
Flight Conditions¶
Initial flight conditions. The values for angle of attack alpha
, control surface deflection cs_deflection
and thrust
are only initial values. The values required for trim will be calculated by the StaticTrim
routine
[2]:
u_inf = 28
alpha_deg = 4.5135
cs_deflection = 0.1814
thrust = 5.5129
Discretisation¶
[3]:
M = 4 # chordwise panels
N = 11 # spanwise panels
Msf = 5 # wake length in chord numbers
Create Horten Wing¶
[4]:
ws = Baseline(M=M,
N=N,
Mstarfactor=Msf,
u_inf=u_inf,
rho=1.02,
alpha_deg=alpha_deg,
roll_deg=0,
cs_deflection_deg=cs_deflection,
thrust=thrust,
physical_time=20,
case_name='horten',
case_name_format=4,
case_remarks='M%gN%gMsf%g' % (M, N, Msf))
ws.set_properties()
ws.initialise()
ws.clean_test_files()
ws.update_mass_stiffness(sigma=1., sigma_mass=2.5)
ws.update_fem_prop()
ws.generate_fem_file()
ws.update_aero_properties()
ws.generate_aero_file()
0
Section Mass: 11.88
Linear Mass: 11.88
Section Ixx: 1.8777
Section Iyy: 1.0137
Section Izz: 2.5496
Linear Ixx: 1.88
1
Section Mass: 10.99
Linear Mass: 10.99
Section Ixx: 1.4694
Section Iyy: 0.9345
Section Izz: 2.1501
Linear Ixx: 1.74
2
Section Mass: 10.10
Linear Mass: 10.10
Section Ixx: 1.1257
Section Iyy: 0.8561
Section Izz: 1.7993
Linear Ixx: 1.60
3
Section Mass: 9.21
Linear Mass: 9.21
Section Ixx: 0.8410
Section Iyy: 0.7783
Section Izz: 1.4933
Linear Ixx: 1.46
4
Section Mass: 8.32
Linear Mass: 8.32
Section Ixx: 0.6096
Section Iyy: 0.7011
Section Izz: 1.2280
Linear Ixx: 1.31
5
Section Mass: 7.43
Linear Mass: 7.43
Section Ixx: 0.4260
Section Iyy: 0.6246
Section Izz: 0.9996
Linear Ixx: 1.17
6
Section Mass: 6.54
Linear Mass: 6.54
Section Ixx: 0.2845
Section Iyy: 0.5485
Section Izz: 0.8040
Linear Ixx: 1.03
7
Section Mass: 5.64
Linear Mass: 5.64
Section Ixx: 0.1796
Section Iyy: 0.4728
Section Izz: 0.6374
Linear Ixx: 0.89
8
Section Mass: 4.75
Linear Mass: 4.75
Section Ixx: 0.1055
Section Iyy: 0.3975
Section Izz: 0.4959
Linear Ixx: 0.75
9
Section Mass: 3.86
Linear Mass: 3.86
Section Ixx: 0.0567
Section Iyy: 0.3226
Section Izz: 0.3753
Linear Ixx: 0.61
10
Section Mass: 2.97
Linear Mass: 2.97
Section Ixx: 0.0275
Section Iyy: 0.2479
Section Izz: 0.2719
Linear Ixx: 0.47
Simulation Information¶
The flow
setting tells SHARPy which solvers to run and in which order. You may be stranged by the presence of the DynamicCoupled
solver but it is necessary to give an initial speed to the structure. This will allow proper linearisation of the structural and rigid body equations.
[5]:
flow = ['BeamLoader',
'AerogridLoader',
'StaticTrim',
'BeamPlot',
'AerogridPlot',
'AeroForcesCalculator',
'DynamicCoupled',
'Modal',
'LinearAssembler',
'AsymptoticStability',
]
SHARPy Settings¶
[6]:
settings = dict()
settings['SHARPy'] = {'case': ws.case_name,
'route': ws.case_route,
'flow': flow,
'write_screen': 'on',
'write_log': 'on',
'log_folder': './output/',
'log_file': ws.case_name + '.log'}
Loaders¶
[7]:
settings['BeamLoader'] = {'unsteady': 'off',
'orientation': algebra.euler2quat(np.array([ws.roll,
ws.alpha,
ws.beta]))}
settings['AerogridLoader'] = {'unsteady': 'off',
'aligned_grid': 'on',
'mstar': int(ws.M * ws.Mstarfactor),
'freestream_dir': ['1', '0', '0'],
'control_surface_deflection': [''],
'wake_shape_generator': 'StraightWake',
'wake_shape_generator_input': {'u_inf': ws.u_inf,
'u_inf_direction': ['1', '0', '0'],
'dt': ws.dt}}
StaticCoupled Solver¶
[8]:
settings['StaticCoupled'] = {'print_info': 'on',
'structural_solver': 'NonLinearStatic',
'structural_solver_settings': {'print_info': 'off',
'max_iterations': 200,
'num_load_steps': 1,
'delta_curved': 1e-5,
'min_delta': ws.tolerance,
'gravity_on': 'on',
'gravity': 9.81},
'aero_solver': 'StaticUvlm',
'aero_solver_settings': {'print_info': 'on',
'horseshoe': ws.horseshoe,
'num_cores': 4,
'n_rollup': int(0),
'rollup_dt': ws.dt,
'rollup_aic_refresh': 1,
'rollup_tolerance': 1e-4,
'velocity_field_generator': 'SteadyVelocityField',
'velocity_field_input': {'u_inf': ws.u_inf,
'u_inf_direction': [1., 0, 0]},
'rho': ws.rho},
'max_iter': 200,
'n_load_steps': 1,
'tolerance': ws.tolerance,
'relaxation_factor': 0.2}
Trim solver¶
[9]:
settings['StaticTrim'] = {'solver': 'StaticCoupled',
'solver_settings': settings['StaticCoupled'],
'thrust_nodes': ws.thrust_nodes,
'initial_alpha': ws.alpha,
'initial_deflection': ws.cs_deflection,
'initial_thrust': ws.thrust,
'max_iter': 200,
'fz_tolerance': 1e-2,
'fx_tolerance': 1e-2,
'm_tolerance': 1e-2}
Nonlinear Equilibrium Post-process¶
[10]:
settings['AerogridPlot'] = {
'include_rbm': 'off',
'include_applied_forces': 'on',
'minus_m_star': 0,
'u_inf': ws.u_inf
}
settings['AeroForcesCalculator'] = {
'write_text_file': 'off',
'text_file_name': ws.case_name + '_aeroforces.csv',
'screen_output': 'on',
'unsteady': 'off',
'coefficients': True,
'q_ref': 0.5 * ws.rho * ws.u_inf ** 2,
'S_ref': 12.809,
}
settings['BeamPlot'] = {
'include_rbm': 'on',
'include_applied_forces': 'on',
'include_FoR': 'on'}
DynamicCoupled Solver¶
As mentioned before, a single time step of DynamicCoupled
is required to give the structure the velocity required for the linearisation of the rigid body equations to be correct. Hence n_time_steps = 1
[11]:
struct_solver_settings = {'print_info': 'off',
'initial_velocity_direction': [-1., 0., 0.],
'max_iterations': 950,
'delta_curved': 1e-6,
'min_delta': ws.tolerance,
'newmark_damp': 5e-3,
'gravity_on': True,
'gravity': 9.81,
'num_steps': ws.n_tstep,
'dt': ws.dt,
'initial_velocity': ws.u_inf * 1}
step_uvlm_settings = {'print_info': 'on',
'num_cores': 4,
'convection_scheme': ws.wake_type,
'velocity_field_generator': 'SteadyVelocityField',
'velocity_field_input': {'u_inf': ws.u_inf * 0,
'u_inf_direction': [1., 0., 0.]},
'rho': ws.rho,
'n_time_steps': ws.n_tstep,
'dt': ws.dt,
'gamma_dot_filtering': 3}
settings['DynamicCoupled'] = {'print_info': 'on',
'structural_solver': 'NonLinearDynamicCoupledStep',
'structural_solver_settings': struct_solver_settings,
'aero_solver': 'StepUvlm',
'aero_solver_settings': step_uvlm_settings,
'fsi_substeps': 200,
'fsi_tolerance': ws.fsi_tolerance,
'relaxation_factor': ws.relaxation_factor,
'minimum_steps': 1,
'relaxation_steps': 150,
'final_relaxation_factor': 0.5,
'n_time_steps': 1,
'dt': ws.dt,
'include_unsteady_force_contribution': 'off',
}
Modal Solver Settings¶
[12]:
settings['Modal'] = {'print_info': True,
'use_undamped_modes': True,
'NumLambda': 30,
'rigid_body_modes': True,
'write_modes_vtk': 'on',
'print_matrices': 'on',
'continuous_eigenvalues': 'off',
'dt': ws.dt,
'plot_eigenvalues': False,
'rigid_modes_cg': False}
Linear Assembler Settings¶
Note that for the assembly of the linear system, we replace the parametrisation of the orientation with Euler angles instead of quaternions.
[13]:
settings['LinearAssembler'] = {'linear_system': 'LinearAeroelastic',
'linear_system_settings': {
'beam_settings': {'modal_projection': 'off',
'inout_coords': 'modes',
'discrete_time': True,
'newmark_damp': 0.5e-2,
'discr_method': 'newmark',
'dt': ws.dt,
'proj_modes': 'undamped',
'num_modes': 9,
'print_info': 'on',
'gravity': 'on',
'remove_dofs': []},
'aero_settings': {'dt': ws.dt,
'integr_order': 2,
'density': ws.rho,
'remove_predictor': 'off',
'use_sparse': 'off',
'remove_inputs': ['u_gust']},
'track_body': 'on',
'use_euler': 'on',
}}
Asymptotic Stability Post-processor¶
[14]:
settings['AsymptoticStability'] = {
'print_info': 'on',
'frequency_cutoff': 0,
'export_eigenvalues': 'on',
'num_evals': 100,
}
Write solver file¶
[15]:
config = configobj.ConfigObj()
np.set_printoptions(precision=16)
file_name = ws.case_route + '/' + ws.case_name + '.sharpy'
config.filename = file_name
for k, v in settings.items():
config[k] = v
config.write()
Run Simulation¶
[16]:
data = sharpy.sharpy_main.main(['', ws.case_route + '/' + ws.case_name + '.sharpy'])
--------------------------------------------------------------------------------
###### ## ## ### ######## ######## ## ##
## ## ## ## ## ## ## ## ## ## ## ##
## ## ## ## ## ## ## ## ## ####
###### ######### ## ## ######## ######## ##
## ## ## ######### ## ## ## ##
## ## ## ## ## ## ## ## ## ##
###### ## ## ## ## ## ## ## ##
--------------------------------------------------------------------------------
Aeroelastics Lab, Aeronautics Department.
Copyright (c), Imperial College London.
All rights reserved.
License available at https://github.com/imperialcollegelondon/sharpy
Running SHARPy from /home/ng213/2TB/pazy_code/pazy-sharpy/lib/sharpy/docs/source/content/example_notebooks
SHARPy being run is in /home/ng213/2TB/pazy_code/pazy-sharpy/lib/sharpy
The branch being run is dev_setting_error
The version and commit hash are: v1.2.1-344-g0239644-0239644
SHARPy output folder set
./output//horten_u_inf2800_M4N11Msf5/
Generating an instance of BeamLoader
Variable for_pos has no assigned value in the settings file.
will default to the value: [0.0, 0, 0]
Generating an instance of AerogridLoader
Variable control_surface_deflection_generator_settings has no assigned value in the settings file.
will default to the value: {}
Variable dx1 has no assigned value in the settings file.
will default to the value: -1.0
Variable ndx1 has no assigned value in the settings file.
will default to the value: 1
Variable r has no assigned value in the settings file.
will default to the value: 1.0
Variable dxmax has no assigned value in the settings file.
will default to the value: -1.0
The aerodynamic grid contains 4 surfaces
Surface 0, M=4, N=2
Wake 0, M=20, N=2
Surface 1, M=4, N=22
Wake 1, M=20, N=22
Surface 2, M=4, N=2
Wake 2, M=20, N=2
Surface 3, M=4, N=22
Wake 3, M=20, N=22
In total: 192 bound panels
In total: 960 wake panels
Total number of panels = 1152
Generating an instance of StaticTrim
Variable print_info has no assigned value in the settings file.
will default to the value: True
Variable tail_cs_index has no assigned value in the settings file.
will default to the value: 0
Variable initial_angle_eps has no assigned value in the settings file.
will default to the value: 0.05
Variable initial_thrust_eps has no assigned value in the settings file.
will default to the value: 2.0
Variable relaxation_factor has no assigned value in the settings file.
will default to the value: 0.2
Variable save_info has no assigned value in the settings file.
will default to the value: False
Generating an instance of StaticCoupled
Variable correct_forces_method has no assigned value in the settings file.
will default to the value:
Variable runtime_generators has no assigned value in the settings file.
will default to the value: {}
Generating an instance of NonLinearStatic
Variable newmark_damp has no assigned value in the settings file.
will default to the value: 0.0001
Variable gravity_dir has no assigned value in the settings file.
will default to the value: [0.0, 0.0, 1.0]
Variable relaxation_factor has no assigned value in the settings file.
will default to the value: 0.3
Variable dt has no assigned value in the settings file.
will default to the value: 0.01
Variable num_steps has no assigned value in the settings file.
will default to the value: 500
Variable initial_position has no assigned value in the settings file.
will default to the value: [0. 0. 0.]
Generating an instance of StaticUvlm
Variable iterative_solver has no assigned value in the settings file.
will default to the value: False
Variable iterative_tol has no assigned value in the settings file.
will default to the value: 0.0001
Variable iterative_precond has no assigned value in the settings file.
will default to the value: False
Variable cfl1 has no assigned value in the settings file.
will default to the value: True
Variable vortex_radius has no assigned value in the settings file.
will default to the value: 1e-06
Variable vortex_radius_wake_ind has no assigned value in the settings file.
will default to the value: 1e-06
Variable rbm_vel_g has no assigned value in the settings file.
will default to the value: [0.0, 0.0, 0.0, 0.0, 0.0, 0.0]
Variable centre_rot_g has no assigned value in the settings file.
will default to the value: [0.0, 0.0, 0.0]
|=====|=====|============|==========|==========|==========|==========|==========|==========|
|iter |step | log10(res) | Fx | Fy | Fz | Mx | My | Mz |
|=====|=====|============|==========|==========|==========|==========|==========|==========|
|==========|==========|==========|==========|==========|==========|==========|==========|==========|==========|
| iter |alpha[deg]|elev[deg] | thrust | Fx | Fy | Fz | Mx | My | Mz |
|==========|==========|==========|==========|==========|==========|==========|==========|==========|==========|
| 0 | 0 | 0.00000 | -0.1051 | -0.0000 | 0.0598 | -0.0000 | 1.0837 | -0.0000 |
| 1 | 0 | -7.62384 | -0.1284 | -0.0000 | 0.1276 | -0.0000 | 0.0045 | -0.0000 |
| 2 | 0 | -8.33392 | -0.1190 | -0.0000 | 0.0397 | -0.0000 | -0.0774 | -0.0000 |
| 3 | 0 | -9.30379 | -0.1133 | 0.0000 | 0.0011 | -0.0000 | -0.0070 | 0.0000 |
| 4 | 0 | -10.71602 | -0.1136 | -0.0000 | 0.0032 | 0.0000 | -0.0100 | -0.0000 |
| 5 | 0 | -10.88827 | -0.1138 | -0.0000 | 0.0043 | 0.0000 | -0.0119 | -0.0000 |
| 6 | 0 | -11.66331 | -0.1138 | -0.0000 | 0.0042 | 0.0000 | -0.0116 | -0.0000 |
| 7 | 0 | -12.88496 | -0.1138 | -0.0000 | 0.0041 | 0.0000 | -0.0116 | 0.0000 |
| 0 | 4.5135 | 0.1814 | 5.5129 | -0.1138 | -0.0000 | 0.0041 | 0.0000 | -0.0116 | 0.0000 |
| 0 | 0 | 0.00000 |-116.9870 | -0.0000 | 994.8063 | -0.0000 |-882.4104 | -0.0000 |
| 1 | 0 | -5.79178 | -72.3841 | 0.0000 | 944.6140 | 0.0000 |-802.5912 | 0.0000 |
| 2 | 0 | -6.63730 | -62.4378 | 0.0000 | 937.6662 | 0.0000 |-792.1259 | -0.0000 |
| 3 | 0 | -7.22937 | -62.8923 | -0.0000 | 939.7866 | -0.0000 |-795.7093 | -0.0000 |
| 4 | 0 | -8.65323 | -62.8757 | -0.0000 | 939.7100 | -0.0000 |-795.5764 | -0.0000 |
| 5 | 0 | -8.81438 | -62.8640 | -0.0000 | 939.6554 | -0.0000 |-795.4837 | -0.0000 |
| 6 | 0 | -9.59386 | -62.8660 | 0.0000 | 939.6644 | -0.0000 |-795.4991 | 0.0000 |
| 7 | 0 | -10.80422 | -62.8661 | 0.0000 | 939.6650 | -0.0000 |-795.5000 | 0.0000 |
| 8 | 0 | -11.01365 | -62.8660 | -0.0000 | 939.6647 | -0.0000 |-795.4994 | -0.0000 |
| 9 | 0 | -12.15197 | -62.8660 | 0.0000 | 939.6647 | -0.0000 |-795.4995 | 0.0000 |
| 0 | 7.3783 | -2.6834 | 5.5129 | -62.8660 | 0.0000 | 939.6647 | -0.0000 |-795.4995 | 0.0000 |
| 0 | 0 | 0.00000 | -32.9132 | -0.0000 | 371.4715 | -0.0000 |-902.7953 | -0.0000 |
| 1 | 0 | -5.48409 | -8.7241 | -0.0000 | 298.8484 | 0.0000 |-777.2938 | 0.0000 |
| 2 | 0 | -6.39387 | -4.0957 | -0.0000 | 289.8092 | -0.0000 |-761.4855 | -0.0000 |
| 3 | 0 | -6.85613 | -4.6263 | -0.0000 | 293.2407 | -0.0000 |-767.3376 | 0.0000 |
| 4 | 0 | -8.25962 | -4.6052 | -0.0000 | 293.1048 | -0.0000 |-767.1066 | 0.0000 |
| 5 | 0 | -8.44065 | -4.5914 | -0.0000 | 293.0156 | 0.0000 |-766.9545 | 0.0000 |
| 6 | 0 | -9.20968 | -4.5937 | -0.0000 | 293.0308 | -0.0000 |-766.9804 | -0.0000 |
| 7 | 0 | -10.44736 | -4.5939 | -0.0000 | 293.0316 | -0.0000 |-766.9819 | -0.0000 |
| 8 | 0 | -10.63000 | -4.5938 | -0.0000 | 293.0311 | 0.0000 |-766.9809 | -0.0000 |
| 9 | 0 | -11.74670 | -4.5938 | 0.0000 | 293.0311 | 0.0000 |-766.9810 | 0.0000 |
| 10 | 0 | -12.29943 | -4.5938 | -0.0000 | 293.0311 | 0.0000 |-766.9810 | 0.0000 |
| 0 | 4.5135 | 3.0462 | 5.5129 | -4.5938 | -0.0000 | 293.0311 | 0.0000 |-766.9810 | 0.0000 |
| 0 | 0 | 0.00000 | -4.1051 | -0.0000 | 0.0598 | -0.0000 | 1.0834 | -0.0000 |
| 1 | 0 | -7.62384 | -4.1284 | -0.0000 | 0.1276 | -0.0000 | 0.0042 | -0.0000 |
| 2 | 0 | -8.33392 | -4.1190 | -0.0000 | 0.0397 | 0.0000 | -0.0778 | -0.0000 |
| 3 | 0 | -9.30379 | -4.1133 | -0.0000 | 0.0011 | 0.0000 | -0.0074 | -0.0000 |
| 4 | 0 | -10.71602 | -4.1136 | 0.0000 | 0.0032 | -0.0000 | -0.0104 | 0.0000 |
| 5 | 0 | -10.88827 | -4.1138 | 0.0000 | 0.0043 | 0.0000 | -0.0123 | 0.0000 |
| 6 | 0 | -11.66331 | -4.1138 | -0.0000 | 0.0042 | 0.0000 | -0.0119 | -0.0000 |
| 7 | 0 | -12.88496 | -4.1138 | -0.0000 | 0.0041 | 0.0000 | -0.0119 | -0.0000 |
| 0 | 4.5135 | 0.1814 | 7.5129 | -4.1138 | -0.0000 | 0.0041 | 0.0000 | -0.0119 | -0.0000 |
| 0 | 0 | 0.00000 | 0.0095 | -0.0000 | 0.0498 | 0.0000 | 1.1013 | -0.0000 |
| 1 | 0 | -7.62357 | -0.0140 | 0.0000 | 0.1189 | 0.0000 | 0.0198 | 0.0000 |
| 2 | 0 | -8.33375 | -0.0046 | -0.0000 | 0.0312 | -0.0000 | -0.0624 | 0.0000 |
| 3 | 0 | -9.30318 | 0.0010 | -0.0000 | -0.0075 | 0.0000 | 0.0081 | -0.0000 |
| 4 | 0 | -10.71542 | 0.0007 | -0.0000 | -0.0054 | 0.0000 | 0.0051 | 0.0000 |
| 5 | 0 | -10.88766 | 0.0006 | -0.0000 | -0.0043 | 0.0000 | 0.0032 | -0.0000 |
| 6 | 0 | -11.66271 | 0.0006 | 0.0000 | -0.0044 | -0.0000 | 0.0035 | 0.0000 |
| 7 | 0 | -12.88441 | 0.0006 | -0.0000 | -0.0045 | 0.0000 | 0.0035 | -0.0000 |
| 1 | 4.5135 | 0.1814 | 5.4560 | 0.0006 | -0.0000 | -0.0045 | 0.0000 | 0.0035 | -0.0000 |
Generating an instance of BeamPlot
Variable include_applied_moments has no assigned value in the settings file.
will default to the value: True
Variable name_prefix has no assigned value in the settings file.
will default to the value:
Variable output_rbm has no assigned value in the settings file.
will default to the value: True
...Finished
Generating an instance of AerogridPlot
Variable include_forward_motion has no assigned value in the settings file.
will default to the value: False
Variable include_unsteady_applied_forces has no assigned value in the settings file.
will default to the value: False
Variable name_prefix has no assigned value in the settings file.
will default to the value:
Variable dt has no assigned value in the settings file.
will default to the value: 0.0
Variable include_velocities has no assigned value in the settings file.
will default to the value: False
Variable include_incidence_angle has no assigned value in the settings file.
will default to the value: False
Variable num_cores has no assigned value in the settings file.
will default to the value: 1
Variable vortex_radius has no assigned value in the settings file.
will default to the value: 1e-06
...Finished
Generating an instance of AeroForcesCalculator
--------------------------------------------------------------------------------
tstep | fx_g | fy_g | fz_g | Cfx_g | Cfy_g | Cfz_g
0 | 1.088e+01 | -4.476e-13 | 1.835e+03 | 2.124e-03 | -8.740e-17 | 3.583e-01
...Finished
Generating an instance of DynamicCoupled
Variable structural_substeps has no assigned value in the settings file.
will default to the value: 0
Variable dynamic_relaxation has no assigned value in the settings file.
will default to the value: False
Variable postprocessors has no assigned value in the settings file.
will default to the value: []
Variable postprocessors_settings has no assigned value in the settings file.
will default to the value: {}
Variable controller_id has no assigned value in the settings file.
will default to the value: {}
Variable controller_settings has no assigned value in the settings file.
will default to the value: {}
Variable cleanup_previous_solution has no assigned value in the settings file.
will default to the value: False
Variable steps_without_unsteady_force has no assigned value in the settings file.
will default to the value: 0
Variable pseudosteps_ramp_unsteady_force has no assigned value in the settings file.
will default to the value: 0
Variable correct_forces_method has no assigned value in the settings file.
will default to the value:
Variable network_settings has no assigned value in the settings file.
will default to the value: {}
Variable runtime_generators has no assigned value in the settings file.
will default to the value: {}
Generating an instance of NonLinearDynamicCoupledStep
Variable num_load_steps has no assigned value in the settings file.
will default to the value: 1
Variable gravity_dir has no assigned value in the settings file.
will default to the value: [0.0, 0.0, 1.0]
Variable relaxation_factor has no assigned value in the settings file.
will default to the value: 0.3
Variable balancing has no assigned value in the settings file.
will default to the value: False
Generating an instance of StepUvlm
Variable iterative_solver has no assigned value in the settings file.
will default to the value: False
Variable iterative_tol has no assigned value in the settings file.
will default to the value: 0.0001
Variable iterative_precond has no assigned value in the settings file.
will default to the value: False
Variable cfl1 has no assigned value in the settings file.
will default to the value: True
Variable vortex_radius has no assigned value in the settings file.
will default to the value: 1e-06
Variable vortex_radius_wake_ind has no assigned value in the settings file.
will default to the value: 1e-06
Variable interp_coords has no assigned value in the settings file.
will default to the value: 0
Variable filter_method has no assigned value in the settings file.
will default to the value: 0
Variable interp_method has no assigned value in the settings file.
will default to the value: 0
Variable yaw_slerp has no assigned value in the settings file.
will default to the value: 0.0
Variable centre_rot has no assigned value in the settings file.
will default to the value: [0.0, 0.0, 0.0]
Variable quasi_steady has no assigned value in the settings file.
will default to the value: False
|=======|========|======|==============|==============|==============|==============|==============|
| ts | t | iter | struc ratio | iter time | residual vel | FoR_vel(x) | FoR_vel(z) |
|=======|========|======|==============|==============|==============|==============|==============|
/home/ng213/2TB/pazy_code/pazy-sharpy/lib/sharpy/sharpy/aero/utils/uvlmlib.py:264: RuntimeWarning: invalid value encountered in true_divide
flightconditions.uinf_direction = np.ctypeslib.as_ctypes(ts_info.u_ext[0][:, 0, 0]/flightconditions.uinf)
| 1 | 0.0089 | 3 | 0.877319 | 0.593232 | -10.598250 |-2.791317e+01 |-2.203426e+00 |
...Finished
Generating an instance of Modal
Variable keep_linear_matrices has no assigned value in the settings file.
will default to the value: True
Variable write_dat has no assigned value in the settings file.
will default to the value: True
Variable delta_curved has no assigned value in the settings file.
will default to the value: 0.01
Variable max_rotation_deg has no assigned value in the settings file.
will default to the value: 15.0
Variable max_displacement has no assigned value in the settings file.
will default to the value: 0.15
Variable use_custom_timestep has no assigned value in the settings file.
will default to the value: -1
Structural eigenvalues
|==============|==============|==============|==============|==============|==============|==============|
| mode | eval_real | eval_imag | freq_n (Hz) | freq_d (Hz) | damping | period (s) |
|==============|==============|==============|==============|==============|==============|==============|
/home/ng213/2TB/pazy_code/pazy-sharpy/lib/sharpy/sharpy/solvers/modal.py:265: UserWarning: Projecting a system with damping on undamped modal shapes
warnings.warn('Projecting a system with damping on undamped modal shapes')
| 0 | -0.000000 | 0.000000 | 0.000000 | 0.000000 | 1.000000 | inf |
| 1 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 1.000000 | inf |
| 2 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 1.000000 | inf |
| 3 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 1.000000 | inf |
| 4 | -0.000000 | 0.000000 | 0.000000 | 0.000000 | 1.000000 | inf |
| 5 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 1.000000 | inf |
| 6 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 1.000000 | inf |
| 7 | -0.000000 | 0.000000 | 0.000000 | 0.000000 | 1.000000 | inf |
| 8 | -0.000000 | 0.000000 | 0.000000 | 0.000000 | 1.000000 | inf |
| 9 | -0.000000 | 0.000000 | 0.000000 | 0.000000 | 1.000000 | inf |
| 10 | 0.000000 | 28.293939 | 4.503120 | 4.503120 | -0.000000 | 0.222068 |
| 11 | 0.000000 | 29.271318 | 4.658675 | 4.658675 | -0.000000 | 0.214653 |
| 12 | 0.000000 | 54.780234 | 8.718545 | 8.718545 | -0.000000 | 0.114698 |
| 13 | 0.000000 | 58.999779 | 9.390106 | 9.390106 | -0.000000 | 0.106495 |
| 14 | 0.000000 | 70.520741 | 11.223724 | 11.223724 | -0.000000 | 0.089097 |
| 15 | 0.000000 | 76.917111 | 12.241738 | 12.241738 | -0.000000 | 0.081688 |
| 16 | 0.000000 | 87.324076 | 13.898058 | 13.898058 | -0.000000 | 0.071952 |
| 17 | 0.000000 | 108.035577 | 17.194396 | 17.194396 | -0.000000 | 0.058158 |
| 18 | 0.000000 | 119.692139 | 19.049596 | 19.049596 | -0.000000 | 0.052495 |
| 19 | 0.000000 | 133.495187 | 21.246419 | 21.246419 | -0.000000 | 0.047067 |
| 20 | 0.000000 | 134.444788 | 21.397553 | 21.397553 | -0.000000 | 0.046734 |
| 21 | 0.000000 | 151.060442 | 24.042016 | 24.042016 | -0.000000 | 0.041594 |
| 22 | 0.000000 | 159.369020 | 25.364367 | 25.364367 | -0.000000 | 0.039425 |
| 23 | 0.000000 | 171.256102 | 27.256255 | 27.256255 | -0.000000 | 0.036689 |
| 24 | 0.000000 | 173.895881 | 27.676389 | 27.676389 | -0.000000 | 0.036132 |
| 25 | 0.000000 | 199.016557 | 31.674469 | 31.674469 | -0.000000 | 0.031571 |
| 26 | 0.000000 | 205.412581 | 32.692428 | 32.692428 | -0.000000 | 0.030588 |
| 27 | 0.000000 | 205.419531 | 32.693534 | 32.693534 | -0.000000 | 0.030587 |
| 28 | 0.000000 | 223.563796 | 35.581283 | 35.581283 | -0.000000 | 0.028105 |
| 29 | 0.000000 | 227.924750 | 36.275351 | 36.275351 | -0.000000 | 0.027567 |
Generating an instance of LinearAssembler
Variable linearisation_tstep has no assigned value in the settings file.
will default to the value: -1
Variable modal_tstep has no assigned value in the settings file.
will default to the value: -1
Variable inout_coordinates has no assigned value in the settings file.
will default to the value:
Variable retain_inputs has no assigned value in the settings file.
will default to the value: []
Variable retain_outputs has no assigned value in the settings file.
will default to the value: []
Generating an instance of LinearAeroelastic
Variable uvlm_filename has no assigned value in the settings file.
will default to the value:
Generating an instance of LinearUVLM
Variable ScalingDict has no assigned value in the settings file.
will default to the value: {}
Variable gust_assembler has no assigned value in the settings file.
will default to the value:
Variable rom_method has no assigned value in the settings file.
will default to the value: []
Variable rom_method_settings has no assigned value in the settings file.
will default to the value: {}
Variable vortex_radius has no assigned value in the settings file.
will default to the value: 1e-06
Variable cfl1 has no assigned value in the settings file.
will default to the value: True
Variable length has no assigned value in the settings file.
will default to the value: 1.0
Variable speed has no assigned value in the settings file.
will default to the value: 1.0
Variable density has no assigned value in the settings file.
will default to the value: 1.0
Variable velocity_field_generator has no assigned value in the settings file.
will default to the value: SteadyVelocityField
Variable velocity_field_input has no assigned value in the settings file.
will default to the value: {}
Variable physical_model has no assigned value in the settings file.
will default to the value: True
Variable track_body has no assigned value in the settings file.
will default to the value: False
Variable track_body_number has no assigned value in the settings file.
will default to the value: -1
Initialising Static linear UVLM solver class...
...done in 0.39 sec
State-space realisation of UVLM equations started...
Computing wake propagation matrix with CFL1=True
state-space model produced in form:
x_{n+1} = A x_{n} + Bp u_{n+1}
...done in 2.43 sec
Generating an instance of LinearBeam
Variable remove_sym_modes has no assigned value in the settings file.
will default to the value: False
Warning, projecting system with damping onto undamped modes
Linearising gravity terms...
M = 187.12 kg
X_CG A -> 1.19 0.00 0.01
Node 1 -> B 0.000 -0.089 -0.000
-> A 0.089 0.206 0.000
-> G 0.089 0.206 -0.007
Node mass:
Matrix: 2.6141
Node 2 -> B -0.010 -0.019 -0.000
-> A 0.019 0.403 0.000
-> G 0.019 0.403 -0.001
Node mass:
Matrix: 7.3672
Node 3 -> B -0.019 -0.087 -0.000
-> A 0.234 0.800 0.000
-> G 0.234 0.800 -0.018
Node mass:
Matrix: 5.8780
Node 4 -> B -0.019 -0.084 -0.000
-> A 0.390 1.238 0.001
-> G 0.389 1.238 -0.030
Node mass:
Matrix: 2.8288
Node 5 -> B -0.018 -0.081 -0.000
-> A 0.546 1.676 0.001
-> G 0.544 1.676 -0.041
Node mass:
Matrix: 5.4372
Node 6 -> B -0.017 -0.078 -0.000
-> A 0.702 2.113 0.002
-> G 0.700 2.113 -0.053
Node mass:
Matrix: 2.6084
Node 7 -> B -0.016 -0.074 -0.000
-> A 0.857 2.551 0.003
-> G 0.855 2.551 -0.064
Node mass:
Matrix: 4.9963
Node 8 -> B -0.016 -0.071 -0.000
-> A 1.013 2.988 0.004
-> G 1.010 2.988 -0.076
Node mass:
Matrix: 2.3879
Node 9 -> B -0.015 -0.068 -0.000
-> A 1.169 3.426 0.005
-> G 1.166 3.426 -0.087
Node mass:
Matrix: 4.5555
Node 10 -> B -0.014 -0.065 -0.000
-> A 1.325 3.863 0.006
-> G 1.321 3.863 -0.098
Node mass:
Matrix: 2.1675
Node 11 -> B -0.013 -0.061 -0.000
-> A 1.480 4.301 0.007
-> G 1.476 4.301 -0.109
Node mass:
Matrix: 4.1146
Node 12 -> B -0.013 -0.058 -0.000
-> A 1.636 4.739 0.009
-> G 1.632 4.739 -0.120
Node mass:
Matrix: 1.9471
Node 13 -> B -0.012 -0.055 -0.000
-> A 1.792 5.176 0.010
-> G 1.787 5.176 -0.131
Node mass:
Matrix: 3.6738
Node 14 -> B -0.011 -0.052 -0.000
-> A 1.948 5.614 0.011
-> G 1.943 5.614 -0.142
Node mass:
Matrix: 1.7267
Node 15 -> B -0.011 -0.048 -0.000
-> A 2.104 6.052 0.012
-> G 2.098 6.052 -0.153
Node mass:
Matrix: 3.2329
Node 16 -> B -0.010 -0.045 -0.000
-> A 2.260 6.489 0.014
-> G 2.254 6.489 -0.164
Node mass:
Matrix: 1.5062
Node 17 -> B -0.009 -0.042 -0.000
-> A 2.415 6.927 0.015
-> G 2.409 6.927 -0.175
Node mass:
Matrix: 2.7921
Node 18 -> B -0.008 -0.039 -0.000
-> A 2.571 7.364 0.016
-> G 2.564 7.364 -0.186
Node mass:
Matrix: 1.2858
Node 19 -> B -0.008 -0.035 -0.000
-> A 2.727 7.802 0.017
-> G 2.720 7.802 -0.197
Node mass:
Matrix: 2.3512
Node 20 -> B -0.007 -0.032 -0.000
-> A 2.883 8.239 0.019
-> G 2.875 8.239 -0.208
Node mass:
Matrix: 1.0654
Node 21 -> B -0.006 -0.028 -0.000
-> A 3.038 8.677 0.020
-> G 3.030 8.677 -0.219
Node mass:
Matrix: 1.9104
Node 22 -> B -0.006 -0.026 -0.000
-> A 3.194 9.114 0.021
-> G 3.186 9.114 -0.230
Node mass:
Matrix: 0.8450
Node 23 -> B -0.005 -0.022 -0.000
-> A 3.350 9.552 0.023
-> G 3.341 9.552 -0.241
Node mass:
Matrix: 1.4695
Node 24 -> B -0.005 -0.022 -0.000
-> A 3.508 9.988 0.024
-> G 3.499 9.988 -0.252
Node mass:
Matrix: 0.3674
Node 25 -> B 0.000 0.089 -0.000
-> A 0.089 -0.206 0.000
-> G 0.089 -0.206 -0.007
Node mass:
Matrix: 2.6141
Node 26 -> B -0.010 0.019 -0.000
-> A 0.019 -0.403 0.000
-> G 0.019 -0.403 -0.001
Node mass:
Matrix: 7.3672
Node 27 -> B -0.019 0.087 -0.000
-> A 0.234 -0.800 0.000
-> G 0.234 -0.800 -0.018
Node mass:
Matrix: 5.8780
Node 28 -> B -0.019 0.084 -0.000
-> A 0.390 -1.238 0.001
-> G 0.389 -1.238 -0.030
Node mass:
Matrix: 2.8288
Node 29 -> B -0.018 0.081 -0.000
-> A 0.546 -1.676 0.001
-> G 0.544 -1.676 -0.041
Node mass:
Matrix: 5.4372
Node 30 -> B -0.017 0.078 -0.000
-> A 0.702 -2.113 0.002
-> G 0.700 -2.113 -0.053
Node mass:
Matrix: 2.6084
Node 31 -> B -0.016 0.074 -0.000
-> A 0.857 -2.551 0.003
-> G 0.855 -2.551 -0.064
Node mass:
Matrix: 4.9963
Node 32 -> B -0.016 0.071 -0.000
-> A 1.013 -2.988 0.004
-> G 1.010 -2.988 -0.076
Node mass:
Matrix: 2.3879
Node 33 -> B -0.015 0.068 -0.000
-> A 1.169 -3.426 0.005
-> G 1.166 -3.426 -0.087
Node mass:
Matrix: 4.5555
Node 34 -> B -0.014 0.065 -0.000
-> A 1.325 -3.863 0.006
-> G 1.321 -3.863 -0.098
Node mass:
Matrix: 2.1675
Node 35 -> B -0.013 0.061 -0.000
-> A 1.480 -4.301 0.007
-> G 1.476 -4.301 -0.109
Node mass:
Matrix: 4.1146
Node 36 -> B -0.013 0.058 -0.000
-> A 1.636 -4.739 0.009
-> G 1.632 -4.739 -0.120
Node mass:
Matrix: 1.9471
Node 37 -> B -0.012 0.055 -0.000
-> A 1.792 -5.176 0.010
-> G 1.787 -5.176 -0.131
Node mass:
Matrix: 3.6738
Node 38 -> B -0.011 0.052 -0.000
-> A 1.948 -5.614 0.011
-> G 1.943 -5.614 -0.142
Node mass:
Matrix: 1.7267
Node 39 -> B -0.011 0.048 -0.000
-> A 2.104 -6.052 0.012
-> G 2.098 -6.052 -0.153
Node mass:
Matrix: 3.2329
Node 40 -> B -0.010 0.045 -0.000
-> A 2.260 -6.489 0.014
-> G 2.254 -6.489 -0.164
Node mass:
Matrix: 1.5062
Node 41 -> B -0.009 0.042 -0.000
-> A 2.415 -6.927 0.015
-> G 2.409 -6.927 -0.175
Node mass:
Matrix: 2.7921
Node 42 -> B -0.008 0.039 -0.000
-> A 2.571 -7.364 0.016
-> G 2.564 -7.364 -0.186
Node mass:
Matrix: 1.2858
Node 43 -> B -0.008 0.035 -0.000
-> A 2.727 -7.802 0.017
-> G 2.720 -7.802 -0.197
Node mass:
Matrix: 2.3512
Node 44 -> B -0.007 0.032 -0.000
-> A 2.883 -8.239 0.019
-> G 2.875 -8.239 -0.208
Node mass:
Matrix: 1.0654
Node 45 -> B -0.006 0.028 -0.000
-> A 3.038 -8.677 0.020
-> G 3.030 -8.677 -0.219
Node mass:
Matrix: 1.9104
Node 46 -> B -0.006 0.026 -0.000
-> A 3.194 -9.114 0.021
-> G 3.186 -9.114 -0.230
Node mass:
Matrix: 0.8450
Node 47 -> B -0.005 0.022 -0.000
-> A 3.350 -9.552 0.023
-> G 3.341 -9.552 -0.241
Node mass:
Matrix: 1.4695
Node 48 -> B -0.005 0.022 -0.000
-> A 3.508 -9.988 0.024
-> G 3.499 -9.988 -0.252
Node mass:
Matrix: 0.3674
Updated the beam C, modal C and K matrices with the terms from the
gravity linearisation
Aeroelastic system assembled:
Aerodynamic states: 1536
Structural states: 594
Total states: 2130
Inputs: 893
Outputs: 891
Final system is:
State-space system
States: 2130
Inputs: 893
Outputs: 891
Generating an instance of AsymptoticStability
Variable reference_velocity has no assigned value in the settings file.
will default to the value: 1.0
Variable display_root_locus has no assigned value in the settings file.
will default to the value: False
Variable velocity_analysis has no assigned value in the settings file.
will default to the value: []
Variable iterative_eigvals has no assigned value in the settings file.
will default to the value: False
Variable modes_to_plot has no assigned value in the settings file.
will default to the value: []
Variable postprocessors has no assigned value in the settings file.
will default to the value: []
Variable postprocessors_settings has no assigned value in the settings file.
will default to the value: {}
Dynamical System Eigenvalues
Calculating eigenvalues using direct method
|==============|==============|==============|==============|==============|==============|==============|
| mode | eval_real | eval_imag | freq_n (Hz) | freq_d (Hz) | damping | period (s) |
|==============|==============|==============|==============|==============|==============|==============|
| 0 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 1.000000 | inf |
| 1 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 1.000000 | inf |
| 2 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 1.000000 | inf |
| 3 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 1.000000 | inf |
| 4 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 1.000000 | inf |
| 5 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 1.000000 | inf |
| 6 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 1.000000 | inf |
| 7 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 1.000000 | inf |
| 8 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 1.000000 | inf |
| 9 | -0.000000 | 0.000000 | 0.000000 | 0.000000 | 1.000000 | inf |
| 10 | -0.000884 | -0.321712 | 0.051202 | 0.051202 | 0.002747 | 19.530439 |
| 11 | -0.000884 | 0.321712 | 0.051202 | 0.051202 | 0.002747 | 19.530439 |
| 12 | -0.008470 | -0.391287 | 0.062290 | 0.062275 | 0.021642 | 16.057731 |
| 13 | -0.008470 | 0.391287 | 0.062290 | 0.062275 | 0.021642 | 16.057731 |
| 14 | -0.022506 | 0.000000 | 0.003582 | 0.000000 | 1.000000 | inf |
| 15 | -0.064808 | -53.732514 | 8.551801 | 8.551795 | 0.001206 | 0.116935 |
| 16 | -0.064808 | 53.732514 | 8.551801 | 8.551795 | 0.001206 | 0.116935 |
| 17 | -0.101946 | 68.319141 | 10.873341 | 10.873329 | 0.001492 | 0.091968 |
| 18 | -0.101946 | -68.319141 | 10.873341 | 10.873329 | 0.001492 | 0.091968 |
| 19 | -0.147587 | 83.265282 | 13.252102 | 13.252081 | 0.001772 | 0.075460 |
| 20 | -0.147587 | -83.265282 | 13.252102 | 13.252081 | 0.001772 | 0.075460 |
| 21 | -0.248703 | -109.925782 | 17.495276 | 17.495232 | 0.002262 | 0.057158 |
| 22 | -0.248703 | 109.925782 | 17.495276 | 17.495232 | 0.002262 | 0.057158 |
| 23 | -0.293472 | 120.387631 | 19.160344 | 19.160287 | 0.002438 | 0.052191 |
| 24 | -0.293472 | -120.387631 | 19.160344 | 19.160287 | 0.002438 | 0.052191 |
| 25 | -0.350319 | 132.903280 | 21.152288 | 21.152214 | 0.002636 | 0.047276 |
| 26 | -0.350319 | -132.903280 | 21.152288 | 21.152214 | 0.002636 | 0.047276 |
| 27 | -0.376401 | 138.516954 | 22.045739 | 22.045658 | 0.002717 | 0.045360 |
| 28 | -0.376401 | -138.516954 | 22.045739 | 22.045658 | 0.002717 | 0.045360 |
| 29 | -0.494445 | 162.714232 | 25.896894 | 25.896774 | 0.003039 | 0.038615 |
| 30 | -0.494445 | -162.714232 | 25.896894 | 25.896774 | 0.003039 | 0.038615 |
| 31 | -0.511651 | -166.238306 | 26.457773 | 26.457648 | 0.003078 | 0.037796 |
| 32 | -0.511651 | 166.238306 | 26.457773 | 26.457648 | 0.003078 | 0.037796 |
| 33 | -0.559180 | 175.709816 | 27.965227 | 27.965086 | 0.003182 | 0.035759 |
| 34 | -0.559180 | -175.709816 | 27.965227 | 27.965086 | 0.003182 | 0.035759 |
| 35 | -0.569755 | 177.873274 | 28.309556 | 28.309411 | 0.003203 | 0.035324 |
| 36 | -0.569755 | -177.873274 | 28.309556 | 28.309411 | 0.003203 | 0.035324 |
| 37 | -0.669914 | -197.999020 | 31.512703 | 31.512523 | 0.003383 | 0.031733 |
| 38 | -0.669914 | 197.999020 | 31.512703 | 31.512523 | 0.003383 | 0.031733 |
| 39 | -0.678424 | 199.782714 | 31.796590 | 31.796406 | 0.003396 | 0.031450 |
| 40 | -0.678424 | -199.782714 | 31.796590 | 31.796406 | 0.003396 | 0.031450 |
| 41 | -0.715684 | 207.440562 | 33.015387 | 33.015191 | 0.003450 | 0.030289 |
| 42 | -0.715684 | -207.440562 | 33.015387 | 33.015191 | 0.003450 | 0.030289 |
| 43 | -0.721193 | -208.623018 | 33.203583 | 33.203385 | 0.003457 | 0.030117 |
| 44 | -0.721193 | 208.623018 | 33.203583 | 33.203385 | 0.003457 | 0.030117 |
| 45 | -0.796838 | -224.809928 | 35.779836 | 35.779611 | 0.003544 | 0.027949 |
| 46 | -0.796838 | 224.809928 | 35.779836 | 35.779611 | 0.003544 | 0.027949 |
| 47 | -0.801462 | -225.851223 | 35.945565 | 35.945339 | 0.003549 | 0.027820 |
| 48 | -0.801462 | 225.851223 | 35.945565 | 35.945339 | 0.003549 | 0.027820 |
| 49 | -0.823218 | 257.880058 | 41.043095 | 41.042886 | 0.003192 | 0.024365 |
| 50 | -0.823218 | -257.880058 | 41.043095 | 41.042886 | 0.003192 | 0.024365 |
| 51 | -0.829849 | 232.223377 | 36.959734 | 36.959498 | 0.003573 | 0.027057 |
| 52 | -0.829849 | -232.223377 | 36.959734 | 36.959498 | 0.003573 | 0.027057 |
| 53 | -0.833132 | 232.986723 | 37.081226 | 37.080989 | 0.003576 | 0.026968 |
| 54 | -0.833132 | -232.986723 | 37.081226 | 37.080989 | 0.003576 | 0.026968 |
| 55 | -0.837692 | 252.830750 | 40.239484 | 40.239264 | 0.003313 | 0.024851 |
| 56 | -0.837692 | -252.830750 | 40.239484 | 40.239264 | 0.003313 | 0.024851 |
| 57 | -0.843057 | -274.636584 | 43.709976 | 43.709770 | 0.003070 | 0.022878 |
| 58 | -0.843057 | 274.636584 | 43.709976 | 43.709770 | 0.003070 | 0.022878 |
| 59 | -0.855990 | -264.468496 | 42.091689 | 42.091468 | 0.003237 | 0.023758 |
| 60 | -0.855990 | 264.468496 | 42.091689 | 42.091468 | 0.003237 | 0.023758 |
| 61 | -0.864725 | 271.184095 | 43.160509 | 43.160289 | 0.003189 | 0.023169 |
| 62 | -0.864725 | -271.184095 | 43.160509 | 43.160289 | 0.003189 | 0.023169 |
| 63 | -0.871325 | -283.421756 | 45.108187 | 45.107973 | 0.003074 | 0.022169 |
| 64 | -0.871325 | 283.421756 | 45.108187 | 45.107973 | 0.003074 | 0.022169 |
| 65 | -0.878445 | 267.336890 | 42.548217 | 42.547987 | 0.003286 | 0.023503 |
| 66 | -0.878445 | -267.336890 | 42.548217 | 42.547987 | 0.003286 | 0.023503 |
| 67 | -0.882869 | -280.833495 | 44.696260 | 44.696039 | 0.003144 | 0.022373 |
| 68 | -0.882869 | 280.833495 | 44.696260 | 44.696039 | 0.003144 | 0.022373 |
| 69 | -0.884024 | -245.027542 | 38.997598 | 38.997344 | 0.003608 | 0.025643 |
| 70 | -0.884024 | 245.027542 | 38.997598 | 38.997344 | 0.003608 | 0.025643 |
| 71 | -0.886589 | -245.661879 | 39.098557 | 39.098302 | 0.003609 | 0.025577 |
| 72 | -0.886589 | 245.661879 | 39.098557 | 39.098302 | 0.003609 | 0.025577 |
| 73 | -0.891210 | -288.915188 | 45.982499 | 45.982280 | 0.003085 | 0.021748 |
| 74 | -0.891210 | 288.915188 | 45.982499 | 45.982280 | 0.003085 | 0.021748 |
| 75 | -0.908699 | 251.206723 | 39.981053 | 39.980792 | 0.003617 | 0.025012 |
| 76 | -0.908699 | -251.206723 | 39.981053 | 39.980792 | 0.003617 | 0.025012 |
| 77 | -0.910251 | -251.606127 | 40.044621 | 40.044359 | 0.003618 | 0.024972 |
| 78 | -0.910251 | 251.606127 | 40.044621 | 40.044359 | 0.003618 | 0.024972 |
| 79 | -0.914184 | -241.156682 | 38.381554 | 38.381278 | 0.003791 | 0.026054 |
| 80 | -0.914184 | 241.156682 | 38.381554 | 38.381278 | 0.003791 | 0.026054 |
| 81 | -0.915395 | 290.517030 | 46.237451 | 46.237221 | 0.003151 | 0.021628 |
| 82 | -0.915395 | -290.517030 | 46.237451 | 46.237221 | 0.003151 | 0.021628 |
| 83 | -0.933974 | -278.955360 | 44.397373 | 44.397124 | 0.003348 | 0.022524 |
| 84 | -0.933974 | 278.955360 | 44.397373 | 44.397124 | 0.003348 | 0.022524 |
| 85 | -0.943144 | -260.320871 | 41.431625 | 41.431353 | 0.003623 | 0.024136 |
| 86 | -0.943144 | 260.320871 | 41.431625 | 41.431353 | 0.003623 | 0.024136 |
| 87 | -0.944542 | -260.700481 | 41.492043 | 41.491770 | 0.003623 | 0.024101 |
| 88 | -0.944542 | 260.700481 | 41.492043 | 41.491770 | 0.003623 | 0.024101 |
| 89 | -0.953003 | -294.814043 | 46.921357 | 46.921112 | 0.003233 | 0.021312 |
| 90 | -0.953003 | 294.814043 | 46.921357 | 46.921112 | 0.003233 | 0.021312 |
| 91 | -0.960626 | -295.652742 | 47.054844 | 47.054595 | 0.003249 | 0.021252 |
| 92 | -0.960626 | 295.652742 | 47.054844 | 47.054595 | 0.003249 | 0.021252 |
| 93 | -0.960976 | -265.315963 | 42.226624 | 42.226347 | 0.003622 | 0.023682 |
| 94 | -0.960976 | 265.315963 | 42.226624 | 42.226347 | 0.003622 | 0.023682 |
| 95 | -0.961739 | 300.017779 | 47.749558 | 47.749313 | 0.003206 | 0.020943 |
| 96 | -0.961739 | -300.017779 | 47.749558 | 47.749313 | 0.003206 | 0.020943 |
| 97 | -0.961940 | -265.596058 | 42.271203 | 42.270925 | 0.003622 | 0.023657 |
| 98 | -0.961940 | 265.596058 | 42.271203 | 42.270925 | 0.003622 | 0.023657 |
| 99 | -0.965385 | -266.582863 | 42.428259 | 42.427980 | 0.003621 | 0.023569 |
FINISHED - Elapsed time = 16.3462206 seconds
FINISHED - CPU process time = 68.0131146 seconds
Post-processing¶
Nonlinear Equilibrium¶
The files can be opened with Paraview to see the deformation and aerodynamic loading on the flying wing in trim conditions.
Asymptotic Stability¶
[17]:
eigenvalues_trim = np.loadtxt('./output/horten_u_inf2800_M4N11Msf5/stability/eigenvalues.dat')
The flight dynamics modes can be found close to the origin of the Argand diagram. In particular, the phugoid is the mode that is closest to the imaginary axis. An exercise is left to the user to compare this phugoid predicition with the nonlinear response!
[18]:
fig = plt.figure()
plt.scatter(eigenvalues_trim[:, 0], eigenvalues_trim[:, 1],
marker='x',
color='k')
plt.xlim(-0.5, 0.5)
plt.ylim(-0.5, 0.5)
plt.grid()
plt.xlabel('Real Part, $Re(\lambda)$ [rad/s]')
plt.ylabel('Imaginary Part, $Im(\lambda)$ [rad/s]');

Looking further out on the plot, the structural modes appear. There is a curve given the Newmark-\(\beta\) integration scheme and on top of it several modes are damped by the presence of the aerodynamics.
Try changing newmark_damp
in the LinearAssembler
settings to see how this plot changes!
[19]:
fig = plt.figure()
plt.scatter(eigenvalues_trim[:, 0], eigenvalues_trim[:, 1],
marker='x',
color='k')
plt.xlim(-5, 0.5)
plt.ylim(-200, 200)
plt.grid()
plt.xlabel('Real Part, $Re(\lambda)$ [rad/s]')
plt.ylabel('Imaginary Part, $Im(\lambda)$ [rad/s]');

Simulation NREL 5MW wind turbine¶
[1]:
%config InlineBackend.figure_format = 'svg'
from IPython.display import Image
url = 'https://raw.githubusercontent.com/ImperialCollegeLondon/sharpy/dev_doc/docs/source/content/example_notebooks/images/turbulence_no_legend.png'
Image(url=url, width=800)
[1]:

In this notebook the blade loads on the NREL-5MW reference wind turbine computed with SHARPy and OpenFAST will be compared. However, zero-drag airfoils have been used.
OpenFAST: https://openfast.readthedocs.io
NREL-5MW: Jonkman, J.; Butterfield, S.; Musial, W. and Scott, G.. Definition of a 5-MW Reference Wind Turbine for Offshore System Development, Technical Report, NREL 2009
Load the required packages:
[2]:
# Required packages
%matplotlib inline
import numpy as np
import os
import matplotlib.pyplot as plt
# Required SHARPy modules
import sharpy.sharpy_main
import sharpy.utils.algebra as algebra
import sharpy.utils.generate_cases as gc
import cases.templates.template_wt as template_wt
These are the results from the OpenFAST simulation for comparison: out-of-plane of_cNdrR
and in-plane of_cTdrR
coefficients along the blade and thrust of_ct
and power of_cp
rotor coefficients
[3]:
of_rR = np.array([0.20158356, 0.3127131, 0.40794048, 0.5984148, 0.6936519, 0.85238045, 0.899999, 0.95555407, 0.98729974, 1.0])
of_cNdrR = np.array([0.08621394, 0.14687876, 0.19345148, 0.2942731, 0.36003628, 0.43748564, 0.44762507, 0.38839236, 0.29782477, 0.0])
of_cTdrR = np.array([0.048268348, 0.051957503, 0.05304592, 0.052862607, 0.056001827, 0.0536646, 0.050112925, 0.038993906, 0.023664437, 0.0])
of_ct = 0.69787693
of_cp = 0.48813498
Create SHARPy case¶
Definition of parameters
[4]:
# Mathematical constants
deg2rad = np.pi/180.
# Case
case = 'rotor'
route = './'
# Geometry discretization
chord_panels = np.array([8], dtype=int)
revs_in_wake = 5
# Operation
rotation_velocity = 12.1*2*np.pi/60
pitch_deg = 0. #degrees
# Wind
WSP = 12.
air_density = 1.225
# Simulation
dphi = 4.*deg2rad
revs_to_simulate = 5
Computation of associated parameters
[5]:
dt = dphi/rotation_velocity
time_steps = int(revs_to_simulate*2.*np.pi/dphi)
mstar = int(revs_in_wake*2.*np.pi/dphi)
Generation of the rotor geometry based on the information in the excel file
[6]:
op_params = {'rotation_velocity': rotation_velocity,
'pitch_deg': pitch_deg,
'wsp': WSP,
'dt': dt}
geom_params = {'chord_panels':chord_panels,
'tol_remove_points': 1e-8,
'n_points_camber': 100,
'm_distribution': 'uniform'}
excel_description = {'excel_file_name': route + '/source/type02_db_NREL5MW_v02.xlsx',
'excel_sheet_parameters': 'parameters',
'excel_sheet_structural_blade': 'structural_blade',
'excel_sheet_discretization_blade': 'discretization_blade',
'excel_sheet_aero_blade': 'aero_blade',
'excel_sheet_airfoil_info': 'airfoil_info',
'excel_sheet_airfoil_chord': 'airfoil_coord'}
options = {'camber_effect_on_twist': False,
'user_defined_m_distribution_type': None,
'include_polars': False}
rotor = template_wt.rotor_from_excel_type03(op_params,
geom_params,
excel_description,
options)
WARNING: The poisson cofficient is assumed equal to 0.3
WARNING: Cross-section area is used as shear area
WARNING: Using perpendicular axis theorem to compute the inertia around xB
WARNING: Replacing node 29 by node 0
WARNING: Replacing node 58 by node 0
Define simulation details. The steady simulation is faster than the dynamic simulation. However, the dynamic simulation includes wake self-induction and provides more accurate results.
[7]:
steady_simulation = False
[8]:
SimInfo = gc.SimulationInformation()
SimInfo.set_default_values()
if steady_simulation:
SimInfo.solvers['SHARPy']['flow'] = ['BeamLoader',
'AerogridLoader',
'StaticCoupledRBM',
'BeamPlot',
'AerogridPlot',
'SaveData']
else:
SimInfo.solvers['SHARPy']['flow'] = ['BeamLoader',
'AerogridLoader',
'StaticCoupledRBM',
'DynamicCoupled']
SimInfo.solvers['SHARPy']['case'] = case
SimInfo.solvers['SHARPy']['route'] = route
SimInfo.solvers['SHARPy']['write_log'] = True
SimInfo.set_variable_all_dicts('dt', dt)
SimInfo.set_variable_all_dicts('rho', air_density)
SimInfo.solvers['SteadyVelocityField']['u_inf'] = WSP
SimInfo.solvers['SteadyVelocityField']['u_inf_direction'] = np.array([0., 0., 1.])
SimInfo.solvers['BeamLoader']['unsteady'] = 'on'
SimInfo.solvers['AerogridLoader']['unsteady'] = 'on'
SimInfo.solvers['AerogridLoader']['mstar'] = mstar
SimInfo.solvers['AerogridLoader']['freestream_dir'] = np.array([0.,0.,0.])
SimInfo.solvers['AerogridLoader']['wake_shape_generator'] = 'HelicoidalWake'
SimInfo.solvers['AerogridLoader']['wake_shape_generator_input'] = {'u_inf': WSP,
'u_inf_direction': SimInfo.solvers['SteadyVelocityField']['u_inf_direction'],
'rotation_velocity': rotation_velocity*np.array([0., 0., 1.]),
'dt': dt,
'dphi1': dphi,
'ndphi1': mstar,
'r': 1.,
'dphimax': 10*deg2rad}
SimInfo.solvers['StaticCoupledRBM']['structural_solver'] = 'RigidDynamicPrescribedStep'
SimInfo.solvers['StaticCoupledRBM']['structural_solver_settings'] = SimInfo.solvers['RigidDynamicPrescribedStep']
SimInfo.solvers['StaticCoupledRBM']['aero_solver'] = 'StaticUvlm'
SimInfo.solvers['StaticCoupledRBM']['aero_solver_settings'] = SimInfo.solvers['StaticUvlm']
SimInfo.solvers['StaticCoupledRBM']['tolerance'] = 1e-8
SimInfo.solvers['StaticCoupledRBM']['n_load_steps'] = 0
SimInfo.solvers['StaticCoupledRBM']['relaxation_factor'] = 0.
SimInfo.solvers['StaticUvlm']['num_cores'] = 8
SimInfo.solvers['StaticUvlm']['velocity_field_generator'] = 'SteadyVelocityField'
SimInfo.solvers['StaticUvlm']['velocity_field_input'] = SimInfo.solvers['SteadyVelocityField']
SimInfo.solvers['SaveData']['compress_float'] = True
# Only used for steady_simulation = False
SimInfo.solvers['StepUvlm']['convection_scheme'] = 3
SimInfo.solvers['StepUvlm']['num_cores'] = 8
SimInfo.solvers['StepUvlm']['velocity_field_generator'] = 'SteadyVelocityField'
SimInfo.solvers['StepUvlm']['velocity_field_input'] = SimInfo.solvers['SteadyVelocityField']
SimInfo.solvers['DynamicCoupled']['structural_solver'] = 'RigidDynamicPrescribedStep'
SimInfo.solvers['DynamicCoupled']['structural_solver_settings'] = SimInfo.solvers['RigidDynamicPrescribedStep']
SimInfo.solvers['DynamicCoupled']['aero_solver'] = 'StepUvlm'
SimInfo.solvers['DynamicCoupled']['aero_solver_settings'] = SimInfo.solvers['StepUvlm']
SimInfo.solvers['DynamicCoupled']['postprocessors'] = ['BeamPlot', 'AerogridPlot', 'Cleanup', 'SaveData']
SimInfo.solvers['DynamicCoupled']['postprocessors_settings'] = {'BeamPlot': SimInfo.solvers['BeamPlot'],
'AerogridPlot': SimInfo.solvers['AerogridPlot'],
'Cleanup': SimInfo.solvers['Cleanup'],
'SaveData': SimInfo.solvers['SaveData']}
SimInfo.solvers['DynamicCoupled']['minimum_steps'] = 0
SimInfo.solvers['DynamicCoupled']['include_unsteady_force_contribution'] = True
SimInfo.solvers['DynamicCoupled']['relaxation_factor'] = 0.
SimInfo.solvers['DynamicCoupled']['final_relaxation_factor'] = 0.
SimInfo.solvers['DynamicCoupled']['dynamic_relaxation'] = False
SimInfo.solvers['DynamicCoupled']['relaxation_steps'] = 0
# Define dynamic simulation (used regardless the value of "steady_simulation" variable)
SimInfo.define_num_steps(time_steps)
SimInfo.with_forced_vel = True
SimInfo.for_vel = np.zeros((time_steps,6), dtype=float)
SimInfo.for_vel[:,5] = rotation_velocity
SimInfo.for_acc = np.zeros((time_steps,6), dtype=float)
SimInfo.with_dynamic_forces = True
SimInfo.dynamic_forces = np.zeros((time_steps,rotor.StructuralInformation.num_node,6), dtype=float)
Generate simulation files
[9]:
gc.clean_test_files(SimInfo.solvers['SHARPy']['route'], SimInfo.solvers['SHARPy']['case'])
rotor.generate_h5_files(SimInfo.solvers['SHARPy']['route'], SimInfo.solvers['SHARPy']['case'])
SimInfo.generate_solver_file()
SimInfo.generate_dyn_file(time_steps)
Run SHARPy case¶
[10]:
sharpy_output = sharpy.sharpy_main.main(['', SimInfo.solvers['SHARPy']['route'] + SimInfo.solvers['SHARPy']['case'] + '.sharpy'])
--------------------------------------------------------------------------------
###### ## ## ### ######## ######## ## ##
## ## ## ## ## ## ## ## ## ## ## ##
## ## ## ## ## ## ## ## ## ####
###### ######### ## ## ######## ######## ##
## ## ## ######### ## ## ## ##
## ## ## ## ## ## ## ## ## ##
###### ## ## ## ## ## ## ## ##
--------------------------------------------------------------------------------
Aeroelastics Lab, Aeronautics Department.
Copyright (c), Imperial College London.
All rights reserved.
License available at https://github.com/imperialcollegelondon/sharpy
Running SHARPy from /home/am3717/code/sharpy/docs/source/content/example_notebooks
SHARPy being run is in /home/am3717/code/sharpy
The branch being run is dev_setting_error
The version and commit hash are: v1.2.1-357-gbb7c4b4-bb7c4b4
SHARPy output folder set
./output//rotor/
Generating an instance of BeamLoader
Generating an instance of AerogridLoader
Variable shear_direction has no assigned value in the settings file.
will default to the value: [1. 0. 0.]
Variable shear_exp has no assigned value in the settings file.
will default to the value: 0.0
Variable h_ref has no assigned value in the settings file.
will default to the value: 1.0
Variable h_corr has no assigned value in the settings file.
will default to the value: 1.0
The aerodynamic grid contains 3 surfaces
Surface 0, M=8, N=26
Wake 0, M=450, N=26
Surface 1, M=8, N=26
Wake 1, M=450, N=26
Surface 2, M=8, N=26
Wake 2, M=450, N=26
In total: 624 bound panels
In total: 35100 wake panels
Total number of panels = 35724
Generating an instance of StaticCoupledRBM
Generating an instance of RigidDynamicPrescribedStep
Generating an instance of StaticUvlm
i_step: 0, i_iter: 0
Resultant forces and moments: (array([2.54814836e-08, 5.82946313e-09, 2.09459948e+04]), array([1.53411975e-07, 3.24440634e-08, 5.96558361e+06]))
Generating an instance of DynamicCoupled
Generating an instance of RigidDynamicPrescribedStep
Generating an instance of StepUvlm
Generating an instance of BeamPlot
Generating an instance of AerogridPlot
Generating an instance of Cleanup
Generating an instance of SaveData
|=======|========|======|==============|==============|==============|==============|==============|
| ts | t | iter | struc ratio | iter time | residual vel | FoR_vel(x) | FoR_vel(z) |
|=======|========|======|==============|==============|==============|==============|==============|
| 1 | 0.0551 | 1 | 0.000251 | 56.804234 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 2 | 0.1102 | 1 | 0.000177 | 60.232129 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 3 | 0.1653 | 1 | 0.000234 | 59.442611 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 4 | 0.2204 | 1 | 0.000290 | 64.383652 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 5 | 0.2755 | 1 | 0.000275 | 52.774436 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 6 | 0.3306 | 1 | 0.000293 | 48.828457 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 7 | 0.3857 | 1 | 0.000316 | 49.762675 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 8 | 0.4408 | 1 | 0.000227 | 49.627842 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 9 | 0.4959 | 1 | 0.000193 | 58.254770 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 10 | 0.5510 | 1 | 0.000233 | 49.347327 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 11 | 0.6061 | 1 | 0.000222 | 51.950339 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 12 | 0.6612 | 1 | 0.000195 | 58.489715 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 13 | 0.7163 | 1 | 0.000190 | 55.497720 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 14 | 0.7713 | 1 | 0.000287 | 49.864559 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 15 | 0.8264 | 1 | 0.000198 | 56.915311 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 16 | 0.8815 | 1 | 0.000273 | 52.475129 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 17 | 0.9366 | 1 | 0.000212 | 53.472742 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 18 | 0.9917 | 1 | 0.000220 | 51.679432 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 19 | 1.0468 | 1 | 0.000230 | 49.468328 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 20 | 1.1019 | 1 | 0.000233 | 48.806374 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 21 | 1.1570 | 1 | 0.000214 | 51.507987 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 22 | 1.2121 | 1 | 0.000152 | 75.114590 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 23 | 1.2672 | 1 | 0.000178 | 63.764692 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 24 | 1.3223 | 1 | 0.000232 | 48.927093 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 25 | 1.3774 | 1 | 0.000205 | 55.065928 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 26 | 1.4325 | 1 | 0.000209 | 53.747631 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 27 | 1.4876 | 1 | 0.000215 | 65.487096 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 28 | 1.5427 | 1 | 0.000366 | 52.159906 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 29 | 1.5978 | 1 | 0.000286 | 50.405248 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 30 | 1.6529 | 1 | 0.000243 | 53.903698 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 31 | 1.7080 | 1 | 0.000189 | 55.762230 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 32 | 1.7631 | 1 | 0.000230 | 49.679477 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 33 | 1.8182 | 1 | 0.000267 | 49.140923 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 34 | 1.8733 | 1 | 0.000217 | 51.686471 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 35 | 1.9284 | 1 | 0.000227 | 49.924635 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 36 | 1.9835 | 1 | 0.000290 | 49.295199 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 37 | 2.0386 | 1 | 0.000231 | 49.096186 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 38 | 2.0937 | 1 | 0.000267 | 53.824351 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 39 | 2.1488 | 1 | 0.000274 | 50.208116 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 40 | 2.2039 | 1 | 0.000164 | 68.475332 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 41 | 2.2590 | 1 | 0.000219 | 51.476537 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 42 | 2.3140 | 1 | 0.000258 | 50.780835 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 43 | 2.3691 | 1 | 0.000205 | 54.508414 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 44 | 2.4242 | 1 | 0.000229 | 49.643120 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 45 | 2.4793 | 1 | 0.000423 | 49.510440 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 46 | 2.5344 | 1 | 0.000229 | 49.386177 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 47 | 2.5895 | 1 | 0.000224 | 51.096846 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 48 | 2.6446 | 1 | 0.000429 | 67.054611 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 49 | 2.6997 | 1 | 0.000674 | 49.034094 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 50 | 2.7548 | 1 | 0.000473 | 67.770922 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 51 | 2.8099 | 1 | 0.000623 | 52.057162 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 52 | 2.8650 | 1 | 0.000197 | 57.338530 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 53 | 2.9201 | 1 | 0.000211 | 53.323214 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 54 | 2.9752 | 1 | 0.000228 | 49.446313 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 55 | 3.0303 | 1 | 0.000226 | 50.531894 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 56 | 3.0854 | 1 | 0.000216 | 49.277498 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 57 | 3.1405 | 1 | 0.000229 | 49.378688 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 58 | 3.1956 | 1 | 0.000456 | 49.096131 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 59 | 3.2507 | 1 | 0.000638 | 49.407950 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 60 | 3.3058 | 1 | 0.000644 | 49.355487 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 61 | 3.3609 | 1 | 0.000429 | 52.381709 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 62 | 3.4160 | 1 | 0.000227 | 50.244867 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 63 | 3.4711 | 1 | 0.000226 | 50.090238 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 64 | 3.5262 | 1 | 0.000221 | 50.890983 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 65 | 3.5813 | 1 | 0.000292 | 52.582257 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 66 | 3.6364 | 1 | 0.000229 | 48.970770 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 67 | 3.6915 | 1 | 0.000211 | 53.921150 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 68 | 3.7466 | 1 | 0.000276 | 49.332785 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 69 | 3.8017 | 1 | 0.000405 | 49.861912 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 70 | 3.8567 | 1 | 0.000678 | 50.109032 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 71 | 3.9118 | 1 | 0.000627 | 50.052867 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 72 | 3.9669 | 1 | 0.000231 | 49.125818 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 73 | 4.0220 | 1 | 0.000215 | 52.475354 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 74 | 4.0771 | 1 | 0.000302 | 51.044905 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 75 | 4.1322 | 1 | 0.000232 | 49.154350 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 76 | 4.1873 | 1 | 0.000263 | 49.587372 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 77 | 4.2424 | 1 | 0.000382 | 48.959923 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 78 | 4.2975 | 1 | 0.000207 | 54.498279 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 79 | 4.3526 | 1 | 0.000209 | 55.866552 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 80 | 4.4077 | 1 | 0.000222 | 50.659905 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 81 | 4.4628 | 1 | 0.000232 | 49.229321 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 82 | 4.5179 | 1 | 0.000230 | 49.197802 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 83 | 4.5730 | 1 | 0.000244 | 58.532026 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 84 | 4.6281 | 1 | 0.000229 | 49.010943 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 85 | 4.6832 | 1 | 0.000236 | 49.181471 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 86 | 4.7383 | 1 | 0.000234 | 50.404876 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 87 | 4.7934 | 1 | 0.000223 | 50.863604 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 88 | 4.8485 | 1 | 0.000232 | 49.386036 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 89 | 4.9036 | 1 | 0.000292 | 48.966426 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 90 | 4.9587 | 1 | 0.000204 | 55.176201 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 91 | 5.0138 | 1 | 0.000381 | 49.363449 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 92 | 5.0689 | 1 | 0.000254 | 51.436284 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 93 | 5.1240 | 1 | 0.000427 | 54.203413 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 94 | 5.1791 | 1 | 0.000278 | 51.088371 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 95 | 5.2342 | 1 | 0.000221 | 51.267494 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 96 | 5.2893 | 1 | 0.000220 | 51.246126 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 97 | 5.3444 | 1 | 0.000261 | 50.044367 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 98 | 5.3994 | 1 | 0.000237 | 48.928531 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 99 | 5.4545 | 1 | 0.000230 | 48.869230 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 100 | 5.5096 | 1 | 0.000229 | 49.124024 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 101 | 5.5647 | 1 | 0.000230 | 49.170615 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 102 | 5.6198 | 1 | 0.000227 | 51.072559 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 103 | 5.6749 | 1 | 0.000230 | 49.106752 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 104 | 5.7300 | 1 | 0.000230 | 49.157374 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 105 | 5.7851 | 1 | 0.000230 | 48.729726 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 106 | 5.8402 | 1 | 0.000230 | 49.307981 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 107 | 5.8953 | 1 | 0.000232 | 49.303297 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 108 | 5.9504 | 1 | 0.000228 | 49.388923 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 109 | 6.0055 | 1 | 0.000251 | 49.505395 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 110 | 6.0606 | 1 | 0.000294 | 49.671154 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 111 | 6.1157 | 1 | 0.000637 | 49.106910 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 112 | 6.1708 | 1 | 0.000668 | 49.600747 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 113 | 6.2259 | 1 | 0.000694 | 48.788273 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 114 | 6.2810 | 1 | 0.000605 | 49.259812 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 115 | 6.3361 | 1 | 0.000235 | 49.096078 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 116 | 6.3912 | 1 | 0.000235 | 48.627974 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 117 | 6.4463 | 1 | 0.000231 | 48.687230 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 118 | 6.5014 | 1 | 0.000261 | 50.182136 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 119 | 6.5565 | 1 | 0.000220 | 51.480792 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 120 | 6.6116 | 1 | 0.000212 | 52.759361 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 121 | 6.6667 | 1 | 0.000234 | 61.395446 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 122 | 6.7218 | 1 | 0.000196 | 57.312678 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 123 | 6.7769 | 1 | 0.000196 | 57.288595 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 124 | 6.8320 | 1 | 0.000219 | 52.597533 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 125 | 6.8871 | 1 | 0.000279 | 51.215139 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 126 | 6.9421 | 1 | 0.000232 | 48.835388 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 127 | 6.9972 | 1 | 0.000228 | 49.442145 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 128 | 7.0523 | 1 | 0.000232 | 49.943434 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 129 | 7.1074 | 1 | 0.000265 | 48.943739 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 130 | 7.1625 | 1 | 0.000233 | 48.552538 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 131 | 7.2176 | 1 | 0.000235 | 48.576140 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 132 | 7.2727 | 1 | 0.000227 | 50.729522 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 133 | 7.3278 | 1 | 0.000199 | 57.042671 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 134 | 7.3829 | 1 | 0.000229 | 49.647710 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 135 | 7.4380 | 1 | 0.000377 | 53.191903 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 136 | 7.4931 | 1 | 0.000666 | 50.832518 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 137 | 7.5482 | 1 | 0.000560 | 52.129724 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 138 | 7.6033 | 1 | 0.000593 | 48.825715 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 139 | 7.6584 | 1 | 0.000231 | 49.220850 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 140 | 7.7135 | 1 | 0.000347 | 64.642874 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 141 | 7.7686 | 1 | 0.000615 | 54.791703 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 142 | 7.8237 | 1 | 0.000557 | 55.332506 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 143 | 7.8788 | 1 | 0.000649 | 51.958248 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 144 | 7.9339 | 1 | 0.000431 | 52.224418 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 145 | 7.9890 | 1 | 0.000532 | 60.207598 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 146 | 8.0441 | 1 | 0.000267 | 48.557877 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 147 | 8.0992 | 1 | 0.000283 | 50.720948 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 148 | 8.1543 | 1 | 0.000264 | 54.107664 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 149 | 8.2094 | 1 | 0.000225 | 49.998135 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 150 | 8.2645 | 1 | 0.000297 | 48.723537 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 151 | 8.3196 | 1 | 0.000229 | 48.991915 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 152 | 8.3747 | 1 | 0.000223 | 50.525580 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 153 | 8.4298 | 1 | 0.000372 | 48.880427 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 154 | 8.4848 | 1 | 0.000232 | 48.851891 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 155 | 8.5399 | 1 | 0.000231 | 48.731096 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 156 | 8.5950 | 1 | 0.000209 | 53.669843 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 157 | 8.6501 | 1 | 0.000203 | 55.525421 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 158 | 8.7052 | 1 | 0.000216 | 48.727216 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 159 | 8.7603 | 1 | 0.000240 | 52.981239 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 160 | 8.8154 | 1 | 0.000294 | 50.516618 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 161 | 8.8705 | 1 | 0.000198 | 56.957355 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 162 | 8.9256 | 1 | 0.000268 | 48.780843 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 163 | 8.9807 | 1 | 0.000228 | 49.216988 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 164 | 9.0358 | 1 | 0.000228 | 49.020854 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 165 | 9.0909 | 1 | 0.000236 | 48.516192 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 166 | 9.1460 | 1 | 0.000275 | 48.936249 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 167 | 9.2011 | 1 | 0.000229 | 48.984558 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 168 | 9.2562 | 1 | 0.000228 | 50.011495 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 169 | 9.3113 | 1 | 0.000230 | 49.079509 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 170 | 9.3664 | 1 | 0.000232 | 48.940832 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 171 | 9.4215 | 1 | 0.000266 | 48.539668 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 172 | 9.4766 | 1 | 0.000329 | 48.707876 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 173 | 9.5317 | 1 | 0.000344 | 49.214713 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 174 | 9.5868 | 1 | 0.000221 | 50.762513 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 175 | 9.6419 | 1 | 0.000336 | 55.302099 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 176 | 9.6970 | 1 | 0.000217 | 48.736059 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 177 | 9.7521 | 1 | 0.000231 | 48.750098 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 178 | 9.8072 | 1 | 0.000229 | 48.794680 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 179 | 9.8623 | 1 | 0.000225 | 50.519301 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 180 | 9.9174 | 1 | 0.000225 | 49.930789 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 181 | 9.9725 | 1 | 0.000265 | 50.077232 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 182 |10.0275 | 1 | 0.000285 | 50.327260 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 183 |10.0826 | 1 | 0.000319 | 50.215326 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 184 |10.1377 | 1 | 0.000288 | 48.350528 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 185 |10.1928 | 1 | 0.000233 | 48.372314 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 186 |10.2479 | 1 | 0.000232 | 49.104808 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 187 |10.3030 | 1 | 0.000292 | 48.972235 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 188 |10.3581 | 1 | 0.000655 | 48.972110 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 189 |10.4132 | 1 | 0.000233 | 48.457135 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 190 |10.4683 | 1 | 0.000229 | 49.120724 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 191 |10.5234 | 1 | 0.000222 | 51.106254 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 192 |10.5785 | 1 | 0.000232 | 48.794933 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 193 |10.6336 | 1 | 0.000292 | 49.537670 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 194 |10.6887 | 1 | 0.000230 | 49.236260 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 195 |10.7438 | 1 | 0.000603 | 52.529460 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 196 |10.7989 | 1 | 0.000697 | 48.383116 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 197 |10.8540 | 1 | 0.000347 | 48.288813 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 198 |10.9091 | 1 | 0.000227 | 49.550065 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 199 |10.9642 | 1 | 0.000216 | 48.675859 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 200 |11.0193 | 1 | 0.000231 | 49.152487 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 201 |11.0744 | 1 | 0.000235 | 48.778197 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 202 |11.1295 | 1 | 0.000373 | 57.791454 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 203 |11.1846 | 1 | 0.000582 | 57.753718 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 204 |11.2397 | 1 | 0.000451 | 48.675944 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 205 |11.2948 | 1 | 0.000235 | 48.274112 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 206 |11.3499 | 1 | 0.000232 | 48.917871 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 207 |11.4050 | 1 | 0.000293 | 49.482251 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 208 |11.4601 | 1 | 0.000297 | 48.304309 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 209 |11.5152 | 1 | 0.000263 | 49.162448 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 210 |11.5702 | 1 | 0.000227 | 50.845835 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 211 |11.6253 | 1 | 0.000232 | 48.809305 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 212 |11.6804 | 1 | 0.000293 | 48.950330 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 213 |11.7355 | 1 | 0.000298 | 48.481146 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 214 |11.7906 | 1 | 0.000234 | 48.222179 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 215 |11.8457 | 1 | 0.000225 | 48.228569 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 216 |11.9008 | 1 | 0.000218 | 48.173668 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 217 |11.9559 | 1 | 0.000230 | 48.496389 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 218 |12.0110 | 1 | 0.000212 | 53.240908 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 219 |12.0661 | 1 | 0.000224 | 51.372105 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 220 |12.1212 | 1 | 0.000419 | 49.490550 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 221 |12.1763 | 1 | 0.000459 | 49.025501 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 222 |12.2314 | 1 | 0.000210 | 53.157816 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 223 |12.2865 | 1 | 0.000233 | 48.099241 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 224 |12.3416 | 1 | 0.000241 | 59.450060 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 225 |12.3967 | 1 | 0.000224 | 50.153783 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 226 |12.4518 | 1 | 0.000169 | 67.550282 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 227 |12.5069 | 1 | 0.000635 | 51.062920 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 228 |12.5620 | 1 | 0.000233 | 48.498621 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 229 |12.6171 | 1 | 0.000647 | 48.837410 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 230 |12.6722 | 1 | 0.000685 | 48.524438 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 231 |12.7273 | 1 | 0.000645 | 47.972726 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 232 |12.7824 | 1 | 0.000698 | 48.332650 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 233 |12.8375 | 1 | 0.000291 | 49.344210 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 234 |12.8926 | 1 | 0.000231 | 48.621207 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 235 |12.9477 | 1 | 0.000211 | 53.099352 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 236 |13.0028 | 1 | 0.000231 | 48.779174 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 237 |13.0579 | 1 | 0.000221 | 52.508748 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 238 |13.1129 | 1 | 0.000197 | 57.071891 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 239 |13.1680 | 1 | 0.000232 | 48.635785 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 240 |13.2231 | 1 | 0.000228 | 49.653808 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 241 |13.2782 | 1 | 0.000232 | 49.880283 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 242 |13.3333 | 1 | 0.000219 | 50.989864 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 243 |13.3884 | 1 | 0.000218 | 51.562733 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 244 |13.4435 | 1 | 0.000175 | 60.525012 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 245 |13.4986 | 1 | 0.000208 | 53.714735 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 246 |13.5537 | 1 | 0.000188 | 60.430187 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 247 |13.6088 | 1 | 0.000580 | 55.369422 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 248 |13.6639 | 1 | 0.000376 | 52.945929 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 249 |13.7190 | 1 | 0.000221 | 50.621281 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 250 |13.7741 | 1 | 0.000222 | 51.930545 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 251 |13.8292 | 1 | 0.000203 | 55.750479 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 252 |13.8843 | 1 | 0.000228 | 49.736165 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 253 |13.9394 | 1 | 0.000239 | 48.733683 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 254 |13.9945 | 1 | 0.000228 | 48.860423 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 255 |14.0496 | 1 | 0.000234 | 48.158656 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 256 |14.1047 | 1 | 0.000222 | 48.995898 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 257 |14.1598 | 1 | 0.000181 | 61.699569 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 258 |14.2149 | 1 | 0.000217 | 51.853006 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 259 |14.2700 | 1 | 0.000231 | 48.370357 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 260 |14.3251 | 1 | 0.000231 | 48.536412 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 261 |14.3802 | 1 | 0.000231 | 48.706123 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 262 |14.4353 | 1 | 0.000321 | 48.889459 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 263 |14.4904 | 1 | 0.000232 | 48.413389 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 264 |14.5455 | 1 | 0.000183 | 61.637297 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 265 |14.6006 | 1 | 0.000266 | 51.996729 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 266 |14.6556 | 1 | 0.000440 | 51.124606 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 267 |14.7107 | 1 | 0.000206 | 54.482224 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 268 |14.7658 | 1 | 0.000227 | 49.396567 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 269 |14.8209 | 1 | 0.000216 | 48.399076 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 270 |14.8760 | 1 | 0.000225 | 49.932379 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 271 |14.9311 | 1 | 0.000229 | 48.837313 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 272 |14.9862 | 1 | 0.000234 | 48.303012 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 273 |15.0413 | 1 | 0.000297 | 48.557886 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 274 |15.0964 | 1 | 0.000232 | 48.462573 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 275 |15.1515 | 1 | 0.000235 | 48.074680 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 276 |15.2066 | 1 | 0.000237 | 47.978437 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 277 |15.2617 | 1 | 0.000218 | 48.799704 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 278 |15.3168 | 1 | 0.000180 | 61.907709 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 279 |15.3719 | 1 | 0.000223 | 50.256748 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 280 |15.4270 | 1 | 0.000229 | 49.243923 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 281 |15.4821 | 1 | 0.000453 | 49.924487 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 282 |15.5372 | 1 | 0.000350 | 49.501563 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 283 |15.5923 | 1 | 0.000234 | 48.333380 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 284 |15.6474 | 1 | 0.000223 | 50.163273 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 285 |15.7025 | 1 | 0.000225 | 50.068699 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 286 |15.7576 | 1 | 0.000229 | 48.458516 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 287 |15.8127 | 1 | 0.000231 | 49.273332 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 288 |15.8678 | 1 | 0.000232 | 48.548550 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 289 |15.9229 | 1 | 0.000224 | 51.276163 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 290 |15.9780 | 1 | 0.000233 | 48.570122 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 291 |16.0331 | 1 | 0.000192 | 50.266936 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 292 |16.0882 | 1 | 0.000295 | 48.692444 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 293 |16.1433 | 1 | 0.000202 | 48.893389 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 294 |16.1983 | 1 | 0.000443 | 50.813372 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 295 |16.2534 | 1 | 0.000529 | 60.601432 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 296 |16.3085 | 1 | 0.000571 | 50.993108 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 297 |16.3636 | 1 | 0.000228 | 49.065097 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 298 |16.4187 | 1 | 0.000234 | 48.226984 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 299 |16.4738 | 1 | 0.000233 | 48.534926 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 300 |16.5289 | 1 | 0.000627 | 48.788802 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 301 |16.5840 | 1 | 0.000555 | 60.530895 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 302 |16.6391 | 1 | 0.000628 | 48.944436 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 303 |16.6942 | 1 | 0.000427 | 49.049230 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 304 |16.7493 | 1 | 0.000236 | 47.892993 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 305 |16.8044 | 1 | 0.000325 | 48.441506 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 306 |16.8595 | 1 | 0.000236 | 48.047404 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 307 |16.9146 | 1 | 0.000232 | 48.215284 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 308 |16.9697 | 1 | 0.000226 | 50.124858 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 309 |17.0248 | 1 | 0.000213 | 52.395805 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 310 |17.0799 | 1 | 0.000222 | 51.302776 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 311 |17.1350 | 1 | 0.000439 | 51.171773 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 312 |17.1901 | 1 | 0.000232 | 49.032143 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 313 |17.2452 | 1 | 0.000233 | 48.628400 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 314 |17.3003 | 1 | 0.000237 | 47.940311 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 315 |17.3554 | 1 | 0.000216 | 51.865635 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 316 |17.4105 | 1 | 0.000373 | 54.905208 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 317 |17.4656 | 1 | 0.000310 | 48.191338 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 318 |17.5207 | 1 | 0.000409 | 48.607705 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 319 |17.5758 | 1 | 0.000350 | 53.126807 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 320 |17.6309 | 1 | 0.000236 | 47.827493 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 321 |17.6860 | 1 | 0.000233 | 48.142512 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 322 |17.7410 | 1 | 0.000233 | 48.315800 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 323 |17.7961 | 1 | 0.000203 | 55.821999 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 324 |17.8512 | 1 | 0.000227 | 49.786573 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 325 |17.9063 | 1 | 0.000424 | 53.387859 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 326 |17.9614 | 1 | 0.000447 | 50.685506 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 327 |18.0165 | 1 | 0.000235 | 48.078798 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 328 |18.0716 | 1 | 0.000232 | 48.322922 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 329 |18.1267 | 1 | 0.000223 | 48.098878 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 330 |18.1818 | 1 | 0.000201 | 48.656743 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 331 |18.2369 | 1 | 0.000273 | 48.314217 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 332 |18.2920 | 1 | 0.000224 | 48.475068 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 333 |18.3471 | 1 | 0.000230 | 48.642246 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 334 |18.4022 | 1 | 0.000194 | 57.654265 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 335 |18.4573 | 1 | 0.000225 | 50.092508 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 336 |18.5124 | 1 | 0.000291 | 49.505815 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 337 |18.5675 | 1 | 0.000228 | 49.799143 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 338 |18.6226 | 1 | 0.000272 | 48.344175 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 339 |18.6777 | 1 | 0.000219 | 48.669889 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 340 |18.7328 | 1 | 0.000221 | 48.424671 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 341 |18.7879 | 1 | 0.000204 | 55.293948 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 342 |18.8430 | 1 | 0.000361 | 48.517776 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 343 |18.8981 | 1 | 0.000218 | 52.256841 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 344 |18.9532 | 1 | 0.000232 | 48.441100 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 345 |19.0083 | 1 | 0.000234 | 48.389977 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 346 |19.0634 | 1 | 0.000230 | 48.982534 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 347 |19.1185 | 1 | 0.000231 | 48.746604 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 348 |19.1736 | 1 | 0.000229 | 56.961390 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 349 |19.2287 | 1 | 0.000188 | 59.830517 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 350 |19.2837 | 1 | 0.000296 | 51.906979 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 351 |19.3388 | 1 | 0.000217 | 51.754677 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 352 |19.3939 | 1 | 0.000244 | 48.090983 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 353 |19.4490 | 1 | 0.000234 | 48.219884 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 354 |19.5041 | 1 | 0.000211 | 53.274204 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 355 |19.5592 | 1 | 0.000236 | 47.988238 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 356 |19.6143 | 1 | 0.000236 | 48.149312 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 357 |19.6694 | 1 | 0.000231 | 48.684465 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 358 |19.7245 | 1 | 0.000245 | 48.573752 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 359 |19.7796 | 1 | 0.000255 | 48.387298 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 360 |19.8347 | 1 | 0.000233 | 48.496933 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 361 |19.8898 | 1 | 0.000298 | 48.227055 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 362 |19.9449 | 1 | 0.000277 | 50.033512 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 363 |20.0000 | 1 | 0.000230 | 48.865905 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 364 |20.0551 | 1 | 0.000233 | 48.282476 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 365 |20.1102 | 1 | 0.000231 | 48.869913 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 366 |20.1653 | 1 | 0.000240 | 48.197653 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 367 |20.2204 | 1 | 0.000236 | 47.995288 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 368 |20.2755 | 1 | 0.000218 | 48.416211 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 369 |20.3306 | 1 | 0.000229 | 49.650859 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 370 |20.3857 | 1 | 0.000281 | 50.925766 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 371 |20.4408 | 1 | 0.000293 | 49.072721 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 372 |20.4959 | 1 | 0.000237 | 47.848434 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 373 |20.5510 | 1 | 0.000461 | 48.577324 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 374 |20.6061 | 1 | 0.000288 | 48.149040 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 375 |20.6612 | 1 | 0.000232 | 48.140545 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 376 |20.7163 | 1 | 0.000627 | 48.528365 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 377 |20.7713 | 1 | 0.000649 | 48.815492 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 378 |20.8264 | 1 | 0.000220 | 48.691541 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 379 |20.8815 | 1 | 0.000234 | 48.163874 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 380 |20.9366 | 1 | 0.000397 | 47.970319 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 381 |20.9917 | 1 | 0.000266 | 49.183593 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 382 |21.0468 | 1 | 0.000228 | 49.448159 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 383 |21.1019 | 1 | 0.000230 | 48.558385 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 384 |21.1570 | 1 | 0.000279 | 48.382636 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 385 |21.2121 | 1 | 0.000237 | 47.482272 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 386 |21.2672 | 1 | 0.000233 | 48.183362 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 387 |21.3223 | 1 | 0.000232 | 48.062299 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 388 |21.3774 | 1 | 0.000235 | 48.362948 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 389 |21.4325 | 1 | 0.000233 | 48.422455 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 390 |21.4876 | 1 | 0.000236 | 48.077169 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 391 |21.5427 | 1 | 0.000218 | 48.317787 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 392 |21.5978 | 1 | 0.000231 | 48.382455 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 393 |21.6529 | 1 | 0.000233 | 48.310206 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 394 |21.7080 | 1 | 0.000219 | 49.225511 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 395 |21.7631 | 1 | 0.000238 | 47.725182 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 396 |21.8182 | 1 | 0.000403 | 48.100903 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 397 |21.8733 | 1 | 0.000227 | 49.886770 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 398 |21.9284 | 1 | 0.000226 | 49.658201 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 399 |21.9835 | 1 | 0.000236 | 48.305113 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 400 |22.0386 | 1 | 0.000213 | 53.014337 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 401 |22.0937 | 1 | 0.000323 | 48.752367 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 402 |22.1488 | 1 | 0.000231 | 48.655110 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 403 |22.2039 | 1 | 0.000302 | 49.894845 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 404 |22.2590 | 1 | 0.000192 | 54.227928 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 405 |22.3140 | 1 | 0.000213 | 53.815790 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 406 |22.3691 | 1 | 0.000231 | 49.235416 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 407 |22.4242 | 1 | 0.000232 | 48.387503 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 408 |22.4793 | 1 | 0.000220 | 52.815450 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 409 |22.5344 | 1 | 0.000232 | 48.253041 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 410 |22.5895 | 1 | 0.000218 | 52.584628 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 411 |22.6446 | 1 | 0.000222 | 50.874607 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 412 |22.6997 | 1 | 0.000234 | 48.125687 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 413 |22.7548 | 1 | 0.000314 | 65.912785 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 414 |22.8099 | 1 | 0.000294 | 48.712801 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 415 |22.8650 | 1 | 0.000234 | 48.264049 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 416 |22.9201 | 1 | 0.000219 | 52.101943 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 417 |22.9752 | 1 | 0.000233 | 48.181907 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 418 |23.0303 | 1 | 0.000239 | 47.737343 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 419 |23.0854 | 1 | 0.000189 | 55.077763 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 420 |23.1405 | 1 | 0.000252 | 48.412007 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 421 |23.1956 | 1 | 0.000207 | 52.025445 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 422 |23.2507 | 1 | 0.000202 | 55.306192 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 423 |23.3058 | 1 | 0.000235 | 48.069254 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 424 |23.3609 | 1 | 0.000268 | 48.786326 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 425 |23.4160 | 1 | 0.000234 | 48.662434 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 426 |23.4711 | 1 | 0.000430 | 48.229208 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 427 |23.5262 | 1 | 0.000660 | 48.355178 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 428 |23.5813 | 1 | 0.000475 | 47.940589 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 429 |23.6364 | 1 | 0.000464 | 48.627356 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 430 |23.6915 | 1 | 0.000231 | 48.519762 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 431 |23.7466 | 1 | 0.000233 | 48.359547 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 432 |23.8017 | 1 | 0.000273 | 48.313746 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 433 |23.8567 | 1 | 0.000237 | 47.977213 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 434 |23.9118 | 1 | 0.000226 | 49.786822 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 435 |23.9669 | 1 | 0.000231 | 48.641675 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 436 |24.0220 | 1 | 0.000263 | 50.056180 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 437 |24.0771 | 1 | 0.000239 | 48.169318 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 438 |24.1322 | 1 | 0.000237 | 47.903935 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 439 |24.1873 | 1 | 0.000235 | 48.071315 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 440 |24.2424 | 1 | 0.000298 | 47.997039 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 441 |24.2975 | 1 | 0.000204 | 51.404477 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 442 |24.3526 | 1 | 0.000234 | 48.367934 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 443 |24.4077 | 1 | 0.000297 | 48.626223 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 444 |24.4628 | 1 | 0.000254 | 48.214660 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 445 |24.5179 | 1 | 0.000234 | 47.731147 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 446 |24.5730 | 1 | 0.000268 | 48.701918 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 447 |24.6281 | 1 | 0.000233 | 48.425494 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 448 |24.6832 | 1 | 0.000233 | 48.324203 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 449 |24.7383 | 1 | 0.000228 | 49.378323 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
| 450 |24.7934 | 1 | 0.000229 | 48.777402 | 0.000000 | 0.000000e+00 | 0.000000e+00 |
...Finished
FINISHED - Elapsed time = 23245.3692466 seconds
FINISHED - CPU process time = 92349.9106726 seconds
Postprocessing¶
Read the structural and aerodynamic information of the last time step
[11]:
tstep = sharpy_output.structure.timestep_info[-1]
astep = sharpy_output.aero.timestep_info[-1]
Separate the structure into blades
[12]:
# Define beams
ielem = 0
nblades = np.max(sharpy_output.structure.beam_number) + 1
nodes_blade = []
first_node = 0
for iblade in range(nblades):
nodes_blade.append(np.zeros((sharpy_output.structure.num_node,), dtype=bool))
while sharpy_output.structure.beam_number[ielem] <= iblade:
ielem += 1
if ielem == sharpy_output.structure.num_elem:
break
nodes_blade[iblade][first_node:sharpy_output.structure.connectivities[ielem-1,1]+1] = True
first_node = sharpy_output.structure.connectivities[ielem-1,1]+1
Compute the radial position of the nodes and initialise the rest of the variables
[13]:
r = []
c = []
dr = []
forces = []
CN_drR = []
CTan_drR = []
CP_drR = []
nodes_num = []
for iblade in range(nblades):
forces.append(tstep.steady_applied_forces[nodes_blade[iblade]].copy())
nodes_num.append(np.arange(0, sharpy_output.structure.num_node, 1)[nodes_blade[iblade]])
r.append(np.linalg.norm(tstep.pos[nodes_blade[iblade], :], axis=1))
dr.append(np.zeros(np.sum(nodes_blade[iblade])))
dr[iblade][0] = 0.5*(r[iblade][1]-r[iblade][0])
dr[iblade][-1] = 0.5 * (r[iblade][-1] - r[iblade][-2])
for inode in range(1,len(r[iblade]) - 1):
dr[iblade][inode] = 0.5*(r[iblade][inode+1] - r[iblade][inode-1])
CN_drR.append(np.zeros(len(r[iblade])))
c.append(np.zeros(len(r[iblade])))
CTan_drR.append(np.zeros(len(r[iblade])))
CP_drR.append(np.zeros(len(r[iblade])))
Transform the loads computed by SHARPy into out-of-plane and in-plane components
[14]:
rho = sharpy_output.settings['StaticCoupledRBM']['aero_solver_settings']['rho']
uinf = sharpy_output.settings['StaticCoupledRBM']['aero_solver_settings']['velocity_field_input']['u_inf']
R = np.max(r[0])
Cp = 0
Ct = 0
global_force_factor = 0.5 * rho * uinf** 2 * np.pi * R**2
global_power_factor = global_force_factor*uinf
for iblade in range(nblades):
for inode in range(len(r[iblade])):
forces[iblade][inode, 0] *= 0. # Discard the spanwise component
node_global_index = nodes_num[iblade][inode]
ielem = sharpy_output.structure.node_master_elem[node_global_index, 0]
inode_in_elem = sharpy_output.structure.node_master_elem[node_global_index, 1]
CAB = algebra.crv2rotation(tstep.psi[ielem, inode_in_elem, :])
c[iblade][inode] = sharpy_output.aero.aero_dict['chord'][ielem,inode_in_elem]
forces_AFoR = np.dot(CAB, forces[iblade][inode, 0:3])
CN_drR[iblade][inode] = forces_AFoR[2]/dr[iblade][inode]*R / global_force_factor
CTan_drR[iblade][inode] = np.linalg.norm(forces_AFoR[0:2])/dr[iblade][inode]*R / global_force_factor
CP_drR[iblade][inode] = np.linalg.norm(forces_AFoR[0:2])/dr[iblade][inode]*R * r[iblade][inode]*rotation_velocity / global_power_factor
Cp += np.sum(CP_drR[iblade]*dr[iblade]/R)
Ct += np.sum(CN_drR[iblade]*dr[iblade]/R)
Results¶
Plot of the loads along the blade
[15]:
fig, list_plots = plt.subplots(1, 2, figsize=(12, 3))
list_plots[0].grid()
list_plots[0].set_xlabel("r/R [-]")
list_plots[0].set_ylabel("CN/d(r/R) [-]")
list_plots[0].plot(r[0]/R, CN_drR[0], '-', label='SHARPy')
list_plots[0].plot(of_rR, of_cNdrR, '-', label='OpenFAST')
list_plots[0].legend()
list_plots[1].grid()
list_plots[1].set_xlabel("r/R [-]")
list_plots[1].set_ylabel("CT/d(r/R) [-]")
list_plots[1].plot(r[0]/R, CTan_drR[0], '-', label='SHARPy')
list_plots[1].plot(of_rR, of_cTdrR, '-', label='OpenFAST')
list_plots[1].legend()
plt.show()
Print the rotor thrust and power coefficients
[16]:
print(" OpenFAST SHARPy")
print("Cp[-] %.2f %.2f" % (of_cp, Cp))
print("Ct[-] %.2f %.2f" % (of_ct, Ct))
OpenFAST SHARPy
Cp[-] 0.49 0.52
Ct[-] 0.70 0.70
A prismatic cantilever beam under a tip load¶
This is an example of the geometrically-exact beam structural solver in SHARPy.
Reference: Simpson R.J.S., Palacios R., “Numerical Aspects of Nonlinear Flexible Aircraft Flight Dynamics Modeling.” 54th AIAA/ASME/ASCE/AHS/ASC Structures, Structural Dynamics and Materials Conference, 8-11 April 2013, Boston, Massachusetts, USA [http://hdl.handle.net/10044/1/11077, http://dx.doi.org/10.2514/6.2013-1634]
Required Packages¶
[1]:
import numpy as np
import os
import matplotlib.pyplot as plt
import sharpy.sharpy_main # used to run SHARPy from Jupyter
import model_static_cantilever as model # model definition
from IPython.display import Image
plt.rcParams.update({'font.size': 20}) # Large fonts in all plots
Problem 1: Tip vertical dead load¶
Consider first a massless beam with a heavy tip mass, such that the deformations are due to the resulting dead load P. The static equilibrium will be obtained for multiple values of P=0, 100, …, 1000 kN
[2]:
Image('images/cantilever.png', width=500)
[2]:

[3]:
# Define temporary files to generate sharpy models.
case_name= 'temp'
route = './'
Nforces=10 # Number of force steps
DeltaForce=100e3 # Increment of forces
Nelem=20 # Number of beam elements
N=2*Nelem+1
x1=np.zeros((Nforces,N))
z1=np.zeros((Nforces,N))
#Loop through all external forces
for jForce in range(Nforces):
model.clean_test_files(route, case_name)
model.generate_fem_file(route, case_name, Nelem, float(jForce+1)*DeltaForce)
model.generate_solver_file(route,case_name)
case_data=sharpy.sharpy_main.main(['', route + case_name + '.sharpy'])
x1[jForce,0:N]=case_data.structure.timestep_info[0].pos[:, 0]
z1[jForce,0:N]=case_data.structure.timestep_info[0].pos[:, 2]
#Store initial geometry
x0=case_data.structure.ini_info.pos[:, 0]
z0=case_data.structure.ini_info.pos[:, 2]
[4]:
# Plot the deformed beam shapes
fig= plt.subplots(1, 1, figsize=(15, 6))
plt.scatter(x0,z0,c='black')
plt.plot(x0,z0,c='black')
for jForce in range(Nforces):
plt.scatter(x1[jForce,0:N],z1[jForce,0:N],c='black')
plt.plot(x1[jForce,0:N],z1[jForce,0:N],c='black')
plt.axis('equal')
plt.grid()
plt.xlabel('x (m)')
plt.ylabel('z (m)')
plt.savefig("images/ncb1-dead-displ.eps", format='eps', dpi=1000, bbox_inches='tight')

[5]:
print('{:>8s}{:>12s}'.format('Force','Tip z'))
dash=20*'-'; print(dash)
for jForce in range(Nforces):
print('{:>8.0f}{:>12.4f}'.format((jForce+1)*DeltaForce,z1[jForce,N-1]))
Force Tip z
--------------------
100000 -0.4438
200000 -0.8672
300000 -1.2551
400000 -1.5999
500000 -1.9005
600000 -2.1597
700000 -2.3824
800000 -2.5737
900000 -2.7386
1000000 -2.8813
[6]:
model.clean_test_files(route, case_name)
Problem 2: Comparing follower and dead forces¶
[7]:
#Loop through all external follower forces, again applied at the tip.
x2=np.zeros((Nforces,N))
z2=np.zeros((Nforces,N))
for jForce in range(Nforces):
model.clean_test_files(route, case_name)
model.generate_fem_file(route, case_name, Nelem, 0, -float(jForce+1)*DeltaForce)
model.generate_solver_file(route,case_name)
case_foll=sharpy.sharpy_main.main(['', route + case_name + '.sharpy'])
x2[jForce,0:N]=case_foll.structure.timestep_info[0].pos[:, 0]
z2[jForce,0:N]=case_foll.structure.timestep_info[0].pos[:, 2]
[8]:
#Plot results.
fig, axs = plt.subplots(nrows=1, ncols=2, figsize=(15, 6))
ax0 = axs[0]
ax0.plot([0,Nforces],[0, 0],linestyle=':', c='black')
ax0.plot(range(Nforces+1), np.concatenate((5, x1[0:Nforces,-1]), axis=None)-5*np.ones(Nforces+1),linestyle='-', c='black')
ax0.plot(range(Nforces+1), np.concatenate((5, x2[0:Nforces,-1]), axis=None)-5*np.ones(Nforces+1),linestyle='--', c='black')
#ax0.axis('equal')
ax0.grid()
ax0.set_xlabel('Force (N) x 10^5')
ax0.set_ylabel('Tip horizontal displacement (m)')
ax0.set(xlim=(0, Nforces), ylim=(-6, 1))
ax1 = axs[1]
ax1.plot([0,Nforces],np.concatenate((0, z1[0,-1]*Nforces), axis=None),linestyle=':', c='black')
ax1.plot(range(Nforces+1), np.concatenate((0, z1[0:Nforces,-1]), axis=None),linestyle='-', c='black')
ax1.plot(range(Nforces+1), np.concatenate((0, z2[0:Nforces,-1]), axis=None),linestyle='--', c='black')
#ax1.axis('equal')
ax1.grid()
ax1.set_xlabel('Force (N) x 10^5')
ax1.set_ylabel('Tip vertical displacement (m)')
ax1.set(xlim=(0, Nforces), ylim=(-5, 1))
ax1.legend(['Linear','Dead','Follower'])
fig.savefig("images/ncb1-foll-displ.eps", format='eps', dpi=1000, bbox_inches="tight")
The PostScript backend does not support transparency; partially transparent artists will be rendered opaque.
The PostScript backend does not support transparency; partially transparent artists will be rendered opaque.
The PostScript backend does not support transparency; partially transparent artists will be rendered opaque.
The PostScript backend does not support transparency; partially transparent artists will be rendered opaque.

[9]:
model.clean_test_files(route, case_name)
A first test case with SHARPy¶
This notebook explains how to create a prismatic cantilever and flexible wing in SHARPy. It aims to provide a big picture about the simulations available in SHARPy describing the very fundamental concepts.
This notebook requires around two hours to be completed.
Generation of the aeroelastic model¶
This section explains how to generate the input files for SHARPy including the structure, the aerodynamics and the simulation details.
[3]:
# Loading of the used packages
import numpy as np # basic mathematical and array functions
import os # Functions related to the operating system
import matplotlib.pyplot as plt # Plotting library
import sharpy.sharpy_main # Run SHARPy inside jupyter notebooks
import sharpy.utils.plotutils as pu # Plotting utilities
from sharpy.utils.constants import deg2rad # Constant to conver degrees to radians
import sharpy.utils.generate_cases as gc
The generate cases module of SHARPy includes a number of templates for the creation of simple cases using common parameters as inputs. It also removes clutter from this notebook.
The following cell configures the plotting library to show the next graphics, it is not part of SHARPy.
[4]:
%%capture
! pip install plotly
Define the problem parameters¶
In this section, we define the basic parameters to generate a model for the wing shown in the image below. We use SI units for all variables.
[5]:
%config InlineBackend.figure_format = 'svg'
from IPython.display import Image
url = ('https://raw.githubusercontent.com/ImperialCollegeLondon/sharpy/dev_example/docs/' +
'source/content/example_notebooks/images/simple_wing_scheme.png')
Image(url=url, width=800)
[5]:

[6]:
# Geometry
chord = 1. # Chord of the wing
aspect_ratio = 16. # Ratio between lenght and chord: aspect_ratio = length/chord
wake_length = 50 # Length of the wake in chord lengths
# Discretization
num_node = 21 # Number of nodes in the structural discretisation
# The number of nodes will also define the aerodynamic panels in the
# spanwise direction
num_chord_panels = 4 # Number of aerodynamic panels in the chordwise direction
num_points_camber = 200 # The camber line of the wing will be defined by a series of (x,y)
# coordintes. Here, we define the size of the (x,y) vectors
# Structural properties of the beam cross section
mass_per_unit_length = 0.75 # Mass per unit length
mass_iner_x = 0.1 # Mass inertia around the local x axis
mass_iner_y = 0.05 # Mass inertia around the local y axis
mass_iner_z = 0.05 # Mass inertia around the local z axis
pos_cg_B = np.zeros((3)) # position of the centre of mass with respect to the elastic axis
EA = 1e7 # Axial stiffness
GAy = 1e6 # Shear stiffness in the local y axis
GAz = 1e6 # Shear stiffness in the local z axis
GJ = 1e4 # Torsional stiffness
EIy = 2e4 # Bending stiffness around the flapwise direction
EIz = 5e6 # Bending stiffness around the edgewise direction
# Operation
WSP = 2. # Wind speed
air_density = 0.1 # Air density
# Time discretization
end_time = 5.0 # End time of the simulation
dt = chord/num_chord_panels/WSP # Always keep one timestep per panel
First, we are going to compute the static equilibrium of the wing at an angle of attack (aoa_ini_deg
). Next, we will change the angle of attack to aoa_end_deg
and we will compute the dynamic response of the wing.
[7]:
aoa_ini_deg = 2. # Angle of attack at the beginning of the simulation
aoa_end_deg = 1. # Angle of attack at the end of the simulation
For now, we keep the size of the wake panels equal to the distance covered by the flow in one time step.
Structural model¶
This section creates a class called AeroelasticInformation
. This class is not directly used by SHARPy, it has been thought as an intermediate step between common engineering inputs and the input information that SHARPy needs.
It has many functionalities (rotate objects, assembly simple strucures together …) which can be looked up in the documentation.
Let’s initialise an Aeroelastic system that will include a StructuralInformation
class and an AerodynamicInformation
class:
[8]:
wing = gc.AeroelasticInformation()
The attibutes that have to be defined (not all of them are compulsory) can be displayed with the code below. They constitute the input parameters to SHARPy and their names are intuitive, however, a complete description of the input variables to SHARPy can be found in the documentation: structural inputs and aerodynamic inputs
For example, the structural properties are:
[9]:
wing.StructuralInformation.__dict__.keys()
[9]:
dict_keys(['num_node_elem', 'num_node', 'num_elem', 'coordinates', 'connectivities', 'elem_stiffness', 'stiffness_db', 'elem_mass', 'mass_db', 'frame_of_reference_delta', 'structural_twist', 'boundary_conditions', 'beam_number', 'body_number', 'app_forces', 'lumped_mass_nodes', 'lumped_mass', 'lumped_mass_inertia', 'lumped_mass_position', 'lumped_mass_mat', 'lumped_mass_mat_nodes'])
For example, the connectivities between the nodes required by the finite element solver are empty so far:
[10]:
print(wing.StructuralInformation.connectivities)
None
For a list of methods that allow us to modify the structure, Check the documentation.
First, we need to define the basic characteristics of the equations as the number of nodes, the number of nodes per element, the number of elements and the location of the nodes in the space:
[11]:
# Define the number of nodes and the number of nodes per element
wing.StructuralInformation.num_node = num_node
wing.StructuralInformation.num_node_elem = 3
# Compute the number of elements assuming basic connections
wing.StructuralInformation.compute_basic_num_elem()
[12]:
# Generate an array with the location of the nodes
node_r = np.zeros((num_node, 3))
node_r[:,1] = np.linspace(0, chord*aspect_ratio, num_node)
print(node_r)
[[ 0. 0. 0. ]
[ 0. 0.8 0. ]
[ 0. 1.6 0. ]
[ 0. 2.4 0. ]
[ 0. 3.2 0. ]
[ 0. 4. 0. ]
[ 0. 4.8 0. ]
[ 0. 5.6 0. ]
[ 0. 6.4 0. ]
[ 0. 7.2 0. ]
[ 0. 8. 0. ]
[ 0. 8.8 0. ]
[ 0. 9.6 0. ]
[ 0. 10.4 0. ]
[ 0. 11.2 0. ]
[ 0. 12. 0. ]
[ 0. 12.8 0. ]
[ 0. 13.6 0. ]
[ 0. 14.4 0. ]
[ 0. 15.2 0. ]
[ 0. 16. 0. ]]
The following function creates a uniform beam from the previous parameters. On top of assigning the previous parameters, it defines other variables such as the connectivities between nodes
[13]:
wing.StructuralInformation.generate_uniform_beam(node_r,
mass_per_unit_length,
mass_iner_x,
mass_iner_y,
mass_iner_z,
pos_cg_B,
EA,
GAy,
GAz,
GJ,
EIy,
EIz,
num_node_elem = wing.StructuralInformation.num_node_elem,
y_BFoR = 'x_AFoR',
num_lumped_mass=0)
If we now show the connectivities between nodes, the function has created them for us. Further information
[14]:
print(wing.StructuralInformation.connectivities)
[[ 0 2 1]
[ 2 4 3]
[ 4 6 5]
[ 6 8 7]
[ 8 10 9]
[10 12 11]
[12 14 13]
[14 16 15]
[16 18 17]
[18 20 19]]
Let’s define the boundary conditions as clamped for node 0 and free for the last node (-1) Further information
[15]:
wing.StructuralInformation.boundary_conditions[0] = 1
wing.StructuralInformation.boundary_conditions[-1] = -1
Aerodynamics¶
We need to define the number of panels in the wake (wake_panels
) and the camber line of the wing which, in this case, is flat. Further information
[16]:
# Compute the number of panels in the wake (streamwise direction) based on the previous paramete
wake_panels = int(wake_length*chord/dt)
# Define the coordinates of the camber line of the wing
wing_camber = np.zeros((1, num_points_camber, 2))
wing_camber[0, :, 0] = np.linspace(0, 1, num_points_camber)
The following function creates an aerodynamic surface uniform on top of the beam that we have already created
[17]:
# Generate blade aerodynamics
wing.AerodynamicInformation.create_one_uniform_aerodynamics(wing.StructuralInformation,
chord = chord,
twist = 0.,
sweep = 0.,
num_chord_panels = num_chord_panels,
m_distribution = 'uniform',
elastic_axis = 0.5,
num_points_camber = num_points_camber,
airfoil = wing_camber)
Summary¶
Now, we have all the inputs that we need for SHARPy. In this section, a first simulation with SHARPy is run. However, it will perform no computation, it will just load the data so we can plot the system we have just created.
SHARPy runs a series of solvers and postprocessors in the order indicated by the flow
variable in the SHARPy
dictionary.
The generate cases
module also allows us to show all the avaiable solvers and all the parameters they accept as inputs. To do so, we need to run the following commands:
[18]:
# Gather data about available solvers
SimInfo = gc.SimulationInformation() # Initialises the SimulationInformation class
SimInfo.set_default_values() # Assigns the default values to all the solvers
# Print the available solvers and postprocessors
for key in SimInfo.solvers.keys():
print(key)
_BaseStructural
AerogridLoader
BeamLoader
DynamicCoupled
DynamicUVLM
LinDynamicSim
LinearAssembler
Modal
NoAero
NonLinearDynamic
NonLinearDynamicCoupledStep
NonLinearDynamicMultibody
NonLinearDynamicPrescribedStep
NonLinearStatic
PrescribedUvlm
RigidDynamicCoupledStep
RigidDynamicPrescribedStep
StaticCoupled
StaticCoupledRBM
StaticTrim
StaticUvlm
StepLinearUVLM
StepUvlm
_BaseTimeIntegrator
NewmarkBeta
GeneralisedAlpha
Trim
LiftDistribution
Cleanup
AerogridPlot
BeamPlot
UDPout
PlotFlowField
PickleData
SaveParametricCase
FrequencyResponse
StallCheck
WriteVariablesTime
CreateSnapshot
SHARPy
SaveData
AeroForcesCalculator
AsymptoticStability
BeamLoads
FloatingForces
ShearVelocityField
DynamicControlSurface
GustVelocityField
TrajectoryGenerator
TurbVelocityField
SteadyVelocityField
ModifyStructure
StraightWake
HelicoidalWake
GridBox
BumpVelocityField
TurbVelocityFieldBts
Let’s output as an example, the input parameters of the BeamLoader
solver. This solver is in charge of loading the structural infromation
[19]:
SimInfo.solvers['BeamLoader']
[19]:
{'unsteady': True, 'orientation': [1.0, 0, 0, 0], 'for_pos': [0.0, 0, 0]}
The following dictionary defines the basic inputs of SHARPy including the solvers to be run (flow
variable), the case name and the route in the file system. In this case we are turning off the screen output because it is useless because we are not running any computation.
[20]:
SimInfo.solvers['SHARPy']['flow'] = ['BeamLoader',
'AerogridLoader']
SimInfo.solvers['SHARPy']['case'] = 'plot'
SimInfo.solvers['SHARPy']['route'] = './'
SimInfo.solvers['SHARPy']['write_screen'] = 'off'
We do not modify any of the default input paramteters in BeamLoader
but we need to define the initial wake shape that we want and its size (wake_panels
)
[21]:
SimInfo.solvers['AerogridLoader']['unsteady'] = 'on'
SimInfo.solvers['AerogridLoader']['mstar'] = wake_panels
SimInfo.solvers['AerogridLoader']['freestream_dir'] = np.array([1.,0.,0.])
SimInfo.solvers['AerogridLoader']['wake_shape_generator'] = 'StraightWake'
SimInfo.solvers['AerogridLoader']['wake_shape_generator_input'] = {'u_inf': WSP,
'u_inf_direction' : np.array(
[np.cos(aoa_ini_deg*deg2rad),
0.,
np.sin(aoa_ini_deg*deg2rad)]),
'dt': dt}
The following functions write the input files needed by SHARPy
[22]:
gc.clean_test_files(SimInfo.solvers['SHARPy']['route'], SimInfo.solvers['SHARPy']['case'])
wing.generate_h5_files(SimInfo.solvers['SHARPy']['route'], SimInfo.solvers['SHARPy']['case'])
SimInfo.generate_solver_file()
The following line of code runs SHARPy inside the jupyter notebook. It is equivalent to run in a terminal: sharpy plot.sharpy
being “plot” the case name defined above
[23]:
sharpy_output = sharpy.sharpy_main.main(['',
SimInfo.solvers['SHARPy']['route'] +
SimInfo.solvers['SHARPy']['case'] +
'.sharpy'])
Let’s plot the case we have created. The function below provides a quick way of generating an interactive plot but it is not suitable for large cases. Luckily SHARPy has other more complex plotting capabilities.
If you download the original jupyter notebook, change thee geometric parameters above and rerun the jupyter notebook you will see its impact on the geometry.
Only the first 6 wake panels are plotted for efficiency.
[24]:
pu.plot_timestep(sharpy_output, tstep=-1, minus_mstar=(wake_panels - 6), plotly=True)
Static simulation¶
Next, we run a static simulation of the previous system. We have already defined the required inputs for BeamLoader
and AerogridLoader
but we need to define the static solvers. We are going to use a FSI solver (StaticCoupled
) that will include a structural solver (NonLinearStatic
) and an aerodynamic solver (StaticUvlm
).
We use most of the default values but we redefine some of them: - We assign the air density to all the solvers that need it - We turn off the gravity on the structural solver - We use a horseshoe solution without roll up for the aerodynamics - We define the velocity field against the wing - We do not use load steps in the FSI solver
In the documentation you can fine further information about the modular framework and about the solvers and their inputs.
[25]:
# Define the simulation
SimInfo.solvers['SHARPy']['flow'] = ['BeamLoader',
'AerogridLoader',
'StaticCoupled']
SimInfo.set_variable_all_dicts('rho', air_density)
SimInfo.solvers['SHARPy']['case'] = 'static'
SimInfo.solvers['SHARPy']['write_screen'] = 'on'
SimInfo.solvers['NonLinearStatic']['gravity_on'] = False
SimInfo.solvers['StaticUvlm']['horseshoe'] = True
SimInfo.solvers['StaticUvlm']['n_rollup'] = 0
SimInfo.solvers['StaticUvlm']['velocity_field_generator'] = 'SteadyVelocityField'
SimInfo.solvers['StaticUvlm']['velocity_field_input'] = {'u_inf' : WSP,
'u_inf_direction' : np.array(
[np.cos(aoa_ini_deg*deg2rad),
0.,
np.sin(aoa_ini_deg*deg2rad)])}
SimInfo.solvers['StaticCoupled']['structural_solver'] = 'NonLinearStatic'
SimInfo.solvers['StaticCoupled']['structural_solver_settings'] = SimInfo.solvers['NonLinearStatic']
SimInfo.solvers['StaticCoupled']['aero_solver'] = 'StaticUvlm'
SimInfo.solvers['StaticCoupled']['aero_solver_settings'] = SimInfo.solvers['StaticUvlm']
SimInfo.solvers['StaticCoupled']['n_load_steps'] = 0
The following functions create the input files required by SHARPy. For further information check: - Configuration file - FEM input file - Aerodynamic input file
[26]:
gc.clean_test_files(SimInfo.solvers['SHARPy']['route'], SimInfo.solvers['SHARPy']['case'])
SimInfo.generate_solver_file()
wing.generate_h5_files(SimInfo.solvers['SHARPy']['route'], SimInfo.solvers['SHARPy']['case'])
[27]:
# Running SHARPy again inside jupyter
sharpy_output = sharpy.sharpy_main.main(['',
SimInfo.solvers['SHARPy']['route'] +
SimInfo.solvers['SHARPy']['case'] +
'.sharpy'])
--------------------------------------------------------------------------------
###### ## ## ### ######## ######## ## ##
## ## ## ## ## ## ## ## ## ## ## ##
## ## ## ## ## ## ## ## ## ####
###### ######### ## ## ######## ######## ##
## ## ## ######### ## ## ## ##
## ## ## ## ## ## ## ## ## ##
###### ## ## ## ## ## ## ## ##
--------------------------------------------------------------------------------
Aeroelastics Lab, Aeronautics Department.
Copyright (c), Imperial College London.
All rights reserved.
License available at https://github.com/imperialcollegelondon/sharpy
Running SHARPy from /home/arturo/code/sharpy/docs/source/content/example_notebooks
SHARPy being run is in /home/arturo/code/sharpy
The branch being run is dev_setting_error
The version and commit hash are: v1.2.1-360-gc3031060-c3031060
SHARPy output folder set
./output//static/
Generating an instance of BeamLoader
Generating an instance of AerogridLoader
Variable dx1 has no assigned value in the settings file.
will default to the value: -1.0
Variable ndx1 has no assigned value in the settings file.
will default to the value: 1
Variable r has no assigned value in the settings file.
will default to the value: 1.0
Variable dxmax has no assigned value in the settings file.
will default to the value: -1.0
The aerodynamic grid contains 1 surfaces
Surface 0, M=4, N=20
Wake 0, M=400, N=20
In total: 80 bound panels
In total: 8000 wake panels
Total number of panels = 8080
Generating an instance of StaticCoupled
Generating an instance of NonLinearStatic
Generating an instance of StaticUvlm
|=====|=====|============|==========|==========|==========|==========|==========|==========|
|iter |step | log10(res) | Fx | Fy | Fz | Mx | My | Mz |
|=====|=====|============|==========|==========|==========|==========|==========|==========|
| 0 | 0 | 0.00000 | -0.0187 | -0.0006 | 0.6029 | 4.8229 | 0.1523 | 0.1495 |
| 1 | 0 | -9.22874 | -0.0188 | -0.0006 | 0.6043 | 4.8366 | 0.1526 | 0.1504 |
FINISHED - Elapsed time = 1.1078096 seconds
FINISHED - CPU process time = 4.8641626 seconds
The next function will plot the static equilibirium solution for the wing
[28]:
pu.plot_timestep(sharpy_output, tstep=-1, minus_mstar=(wake_panels-6), plotly=True)
Dynamic simulation¶
Finally, we run a dynamic simulation after the previous static one. With that objective, we include a dynamic FSI solver (DynamicCoupled
) in the simulation
[29]:
SimInfo.solvers['SHARPy']['flow'] = ['BeamLoader',
'AerogridLoader',
'StaticCoupled',
'DynamicCoupled']
SimInfo.solvers['SHARPy']['route'] = './'
SimInfo.solvers['SHARPy']['case'] = 'dynamic'
We need information about the time step and the number of iterations
[30]:
# Compute the number of time steps needed based on the previous parameters
time_steps = int(end_time/dt)
# Define the time step and the number of time steps in every solver that requires them as input
SimInfo.set_variable_all_dicts('dt', dt)
SimInfo.define_num_steps(time_steps)
We define the approximation we are going to use for the wake convection (convection_scheme
), the velocity field and deactivate the gravity.
We are going to use a FSI solver (DynamicCoupled
) that couples a structual solver (NonLinearDynamicPrescribedStep
) and an aerodynamic solver (StepUvlm
).
Moreover, the FSI solver runs a series of postprocessors after each time step. Specifically it will save a plot of the structure (BeamPlot
) and of the aerodynamic surfaces (AerogridPlot
).
[31]:
SimInfo.solvers['StepUvlm']['convection_scheme'] = 2
SimInfo.solvers['StaticUvlm']['velocity_field_generator'] = 'SteadyVelocityField'
SimInfo.solvers['StepUvlm']['velocity_field_input'] = {'u_inf' : WSP,
'u_inf_direction' : np.array(
[np.cos(aoa_end_deg*deg2rad),
0.,
np.sin(aoa_end_deg*deg2rad)])}
SimInfo.solvers['NonLinearDynamicPrescribedStep']['gravity_on'] = False
SimInfo.solvers['DynamicCoupled']['structural_solver'] = 'NonLinearDynamicPrescribedStep'
SimInfo.solvers['DynamicCoupled']['structural_solver_settings'] = SimInfo.solvers['NonLinearDynamicPrescribedStep']
SimInfo.solvers['DynamicCoupled']['aero_solver'] = 'StepUvlm'
SimInfo.solvers['DynamicCoupled']['aero_solver_settings'] = SimInfo.solvers['StepUvlm']
SimInfo.solvers['DynamicCoupled']['postprocessors'] = ['BeamPlot', 'AerogridPlot']
SimInfo.solvers['DynamicCoupled']['postprocessors_settings'] = {'BeamPlot': SimInfo.solvers['BeamPlot'],
'AerogridPlot': SimInfo.solvers['AerogridPlot']}
Finally we need to define the movement of the whole wing through its velocity and acceleration. In this case we want a clamped structure so we will set every thing to zero.
Moreover, se can define forces applied togheter with the aerodynamic ones. In this case they will be set to zero.
[32]:
SimInfo.with_forced_vel = True
SimInfo.for_vel = np.zeros((time_steps,6), dtype=float)
SimInfo.for_acc = np.zeros((time_steps,6), dtype=float)
SimInfo.with_dynamic_forces = True
SimInfo.dynamic_forces = np.zeros((time_steps,wing.StructuralInformation.num_node,6),
dtype=float)
We write the input files required by SHARPy again:
[33]:
gc.clean_test_files(SimInfo.solvers['SHARPy']['route'], SimInfo.solvers['SHARPy']['case'])
wing.generate_h5_files(SimInfo.solvers['SHARPy']['route'], SimInfo.solvers['SHARPy']['case'])
SimInfo.generate_solver_file()
SimInfo.generate_dyn_file(time_steps)
And we run the simulation
[34]:
sharpy_output = sharpy.sharpy_main.main(['',
SimInfo.solvers['SHARPy']['route'] +
SimInfo.solvers['SHARPy']['case'] +
'.sharpy'])
--------------------------------------------------------------------------------
###### ## ## ### ######## ######## ## ##
## ## ## ## ## ## ## ## ## ## ## ##
## ## ## ## ## ## ## ## ## ####
###### ######### ## ## ######## ######## ##
## ## ## ######### ## ## ## ##
## ## ## ## ## ## ## ## ## ##
###### ## ## ## ## ## ## ## ##
--------------------------------------------------------------------------------
Aeroelastics Lab, Aeronautics Department.
Copyright (c), Imperial College London.
All rights reserved.
License available at https://github.com/imperialcollegelondon/sharpy
Running SHARPy from /home/arturo/code/sharpy/docs/source/content/example_notebooks
SHARPy being run is in /home/arturo/code/sharpy
The branch being run is dev_setting_error
The version and commit hash are: v1.2.1-360-gc3031060-c3031060
SHARPy output folder set
./output//dynamic/
Generating an instance of BeamLoader
Generating an instance of AerogridLoader
Variable dx1 has no assigned value in the settings file.
will default to the value: -1.0
Variable ndx1 has no assigned value in the settings file.
will default to the value: 1
Variable r has no assigned value in the settings file.
will default to the value: 1.0
Variable dxmax has no assigned value in the settings file.
will default to the value: -1.0
The aerodynamic grid contains 1 surfaces
Surface 0, M=4, N=20
Wake 0, M=400, N=20
In total: 80 bound panels
In total: 8000 wake panels
Total number of panels = 8080
Generating an instance of StaticCoupled
Generating an instance of NonLinearStatic
Generating an instance of StaticUvlm
|=====|=====|============|==========|==========|==========|==========|==========|==========|
|iter |step | log10(res) | Fx | Fy | Fz | Mx | My | Mz |
|=====|=====|============|==========|==========|==========|==========|==========|==========|
| 0 | 0 | 0.00000 | -0.0187 | -0.0006 | 0.6029 | 4.8229 | 0.1523 | 0.1495 |
| 1 | 0 | -9.22874 | -0.0188 | -0.0006 | 0.6043 | 4.8366 | 0.1526 | 0.1504 |
Generating an instance of DynamicCoupled
Generating an instance of NonLinearDynamicPrescribedStep
Generating an instance of StepUvlm
Generating an instance of BeamPlot
Generating an instance of AerogridPlot
|=======|========|======|==============|==============|==============|==============|==============|
| ts | t | iter | struc ratio | iter time | residual vel | FoR_vel(x) | FoR_vel(z) |
|=======|========|======|==============|==============|==============|==============|==============|
| 1 | 0.1250 | 4 | 0.422637 | 2.156250 | -5.501499 | 0.000000e+00 | 0.000000e+00 |
| 2 | 0.2500 | 3 | 0.536941 | 1.912537 | -5.442787 | 0.000000e+00 | 0.000000e+00 |
| 3 | 0.3750 | 3 | 0.524459 | 2.198519 | -5.640521 | 0.000000e+00 | 0.000000e+00 |
| 4 | 0.5000 | 3 | 0.312450 | 1.014755 | -5.645651 | 0.000000e+00 | 0.000000e+00 |
| 5 | 0.6250 | 3 | 0.516388 | 1.390178 | -5.889684 | 0.000000e+00 | 0.000000e+00 |
| 6 | 0.7500 | 3 | 0.493723 | 1.473236 | -5.914635 | 0.000000e+00 | 0.000000e+00 |
| 7 | 0.8750 | 3 | 0.364603 | 1.169983 | -6.040009 | 0.000000e+00 | 0.000000e+00 |
| 8 | 1.0000 | 3 | 0.375979 | 1.130078 | -5.925998 | 0.000000e+00 | 0.000000e+00 |
| 9 | 1.1250 | 3 | 0.422528 | 1.220274 | -5.836958 | 0.000000e+00 | 0.000000e+00 |
| 10 | 1.2500 | 3 | 0.470494 | 1.508245 | -5.632144 | 0.000000e+00 | 0.000000e+00 |
| 11 | 1.3750 | 3 | 0.518558 | 1.643736 | -5.513670 | 0.000000e+00 | 0.000000e+00 |
| 12 | 1.5000 | 3 | 0.461596 | 1.443260 | -5.471589 | 0.000000e+00 | 0.000000e+00 |
| 13 | 1.6250 | 3 | 0.382144 | 1.202683 | -5.423647 | 0.000000e+00 | 0.000000e+00 |
| 14 | 1.7500 | 3 | 0.381228 | 1.303255 | -5.451292 | 0.000000e+00 | 0.000000e+00 |
| 15 | 1.8750 | 3 | 0.488247 | 1.640878 | -5.503924 | 0.000000e+00 | 0.000000e+00 |
| 16 | 2.0000 | 3 | 0.533105 | 2.012032 | -5.521127 | 0.000000e+00 | 0.000000e+00 |
| 17 | 2.1250 | 3 | 0.488828 | 1.673044 | -5.649248 | 0.000000e+00 | 0.000000e+00 |
| 18 | 2.2500 | 3 | 0.408699 | 1.435696 | -5.852560 | 0.000000e+00 | 0.000000e+00 |
| 19 | 2.3750 | 3 | 0.549950 | 1.755136 | -6.169248 | 0.000000e+00 | 0.000000e+00 |
| 20 | 2.5000 | 3 | 0.496495 | 1.671328 | -6.501434 | 0.000000e+00 | 0.000000e+00 |
| 21 | 2.6250 | 3 | 0.388377 | 1.389508 | -5.911316 | 0.000000e+00 | 0.000000e+00 |
| 22 | 2.7500 | 3 | 0.579859 | 2.018747 | -5.844249 | 0.000000e+00 | 0.000000e+00 |
| 23 | 2.8750 | 3 | 0.418595 | 1.542469 | -5.662014 | 0.000000e+00 | 0.000000e+00 |
| 24 | 3.0000 | 3 | 0.478950 | 1.563416 | -5.623002 | 0.000000e+00 | 0.000000e+00 |
| 25 | 3.1250 | 3 | 0.414521 | 1.306833 | -5.695734 | 0.000000e+00 | 0.000000e+00 |
| 26 | 3.2500 | 3 | 0.444346 | 1.431409 | -5.679340 | 0.000000e+00 | 0.000000e+00 |
| 27 | 3.3750 | 3 | 0.468878 | 1.387275 | -5.742054 | 0.000000e+00 | 0.000000e+00 |
| 28 | 3.5000 | 3 | 0.349114 | 1.171457 | -5.934912 | 0.000000e+00 | 0.000000e+00 |
| 29 | 3.6250 | 3 | 0.347932 | 1.166252 | -6.170404 | 0.000000e+00 | 0.000000e+00 |
| 30 | 3.7500 | 3 | 0.413979 | 1.302708 | -6.498959 | 0.000000e+00 | 0.000000e+00 |
| 31 | 3.8750 | 3 | 0.365911 | 1.211784 | -6.054012 | 0.000000e+00 | 0.000000e+00 |
| 32 | 4.0000 | 3 | 0.445476 | 1.360627 | -6.023555 | 0.000000e+00 | 0.000000e+00 |
| 33 | 4.1250 | 3 | 0.413054 | 1.284355 | -5.782342 | 0.000000e+00 | 0.000000e+00 |
| 34 | 4.2500 | 3 | 0.467896 | 1.423890 | -5.673256 | 0.000000e+00 | 0.000000e+00 |
| 35 | 4.3750 | 3 | 0.380931 | 1.219211 | -5.733463 | 0.000000e+00 | 0.000000e+00 |
| 36 | 4.5000 | 3 | 0.512592 | 1.547063 | -5.705716 | 0.000000e+00 | 0.000000e+00 |
| 37 | 4.6250 | 3 | 0.444554 | 1.350007 | -5.751720 | 0.000000e+00 | 0.000000e+00 |
| 38 | 4.7500 | 3 | 0.449910 | 1.374741 | -5.851236 | 0.000000e+00 | 0.000000e+00 |
| 39 | 4.8750 | 3 | 0.444920 | 1.371475 | -5.920499 | 0.000000e+00 | 0.000000e+00 |
| 40 | 5.0000 | 3 | 0.418596 | 1.348310 | -6.297188 | 0.000000e+00 | 0.000000e+00 |
...Finished
FINISHED - Elapsed time = 69.6649866 seconds
FINISHED - CPU process time = 323.5800926 seconds
This is the plot of the wing at the end of the simulation
[35]:
pu.plot_timestep(sharpy_output, tstep=-1, minus_mstar=(wake_panels-6), plotly=True)
Postprocessing¶
As an example, we are going to plot the evolution of the tip position along time
[36]:
time = np.linspace(0, dt*time_steps, time_steps)
tip_pos = np.zeros((time_steps))
for it in range(time_steps):
tip_pos[it] = sharpy_output.structure.timestep_info[it].pos[-1, 2]
fig, plots = plt.subplots(1, 1, figsize=(6, 3))
plots.grid()
plots.set_xlabel("time [s]")
plots.set_ylabel("tip position [m]")
plots.plot(time, tip_pos, '-')
plt.show()
Conclusions¶
This notebook provides the big picture of the simulations with SHARPy. We recommend to go through the documentation with special attention to the SHARPy file description and the examples.
Downloadable files¶
Input data for wind turbine:
Input data for static cantilever:
Note: some of these examples may need additional files which would be located in the ./example_notebooks/
directory. It is recommended that you run these cases directly from there rather than downloading. If you download, make sure you replicate the folder structure such that the examples are capable of finding the required files.
Contributing to SHARPy¶
Bug fixes and features¶
SHARPy is a collaborative effort, and this means that some coding practices need to be encouraged so that the code is kept tidy and consistent. Any user is welcome to raise issues for bug fixes and feature proposals through Github.
If you are submitting a bug report:
Make sure your SHARPy, xbeam and uvlm local copies are up to date and in the same branch.
Double check that your python distribution is updated by comparing with the
utils/environment_*.yml
file.Try to assemble a minimal working example that can be run quickly and easily.
Describe as accurately as possible your setup (OS, path, compilers…) and the problem.
Raise an issue with all this information in the Github repo and label it
potential bug
.
Please bear in mind that we do not have the resources to provide support for user modifications of the code through Github. If you have doubts about how to modify certain parts of the code, contact us through email and we will help you as much as we can.
If you are fixing a bug:
THANKS!
Please create a pull request from your modified fork, and describe in a few lines which bug you are fixing, a minimal example that triggers the bug and how you are fixing it. We will review it ASAP and hopefully it will be incorporated in the code!
If you have an idea for new functionality but do not know how to implement it:
We welcome tips and suggestions from users, as it allow us to broaden the scope of the code. The more people using it, the better!
Feel free to fill an issue in Github, and tag it as
feature proposal
. Please understand that the more complete the description of the potential feature, the more likely it is that some of the developers will give it a go.
If you have developed new functionality and you want to share it with the world:
AWESOME! Please follow the same instructions than for the bug fix submission. If you have some peer-reviewed references related to the new code, even better, as it will save us some precious time.
Code formatting¶
We try to follow the PEP8 standards
(with spaces, no tabs please!) and Google Python Style Guide.
We do not ask you to freak out over formatting, but please, try to keep it tidy and
descriptive. A good tip is to run pylint
https://www.pylint.org/
to make sure there are no obvious formatting problems.
Documentation¶
Contributing to SHARPy’s documentation benefits everyone. As a developer, writing documentation helps you better understand what you have done and whether your functions etc make logical sense. As a user, any documentation is better than digging through the code. The more we have documented, the easier the code is to use and the more users we can have.
If you want to contribute by documenting code, you have come to the right place.
SHARPy is documented using Sphinx and it extracts the documentation directly from the source code. It is then sorted into directories automatically and a human readable website generated. The amount of work you need to do is minimal. That said, the recipe for a successfully documented class, function, module is the following:
Your documentation has to be written in ReStructuredText (rst). I know, another language… hence I will leave a few tips:
Inline code is written using two backticks
``
Inline math is written as
:math:`1+\exp^{i\pi} = 0`
. Don’t forget the backticks!Math in a single or multiple lines is simple:
.. math:: 1 + \exp{i\pi} = 0
Lists in ReStructuredText are tricky, I must admit. Therefore, I will link to some examples. The key resides in not forgetting the spaces, in particular when you go onto a second line!
The definite example list can be found here.
Titles and docstrings, the bare minimum:
Start docstrings with
r
such that they are interpreted raw:r""" My docstring """
All functions, modules and classes should be given a title that goes in the first line of the docstring
If you are writing a whole package with an
__init__.py
file, even if it’s empty, give it a human readable docstring. This will then be imported into the documentationFor modules with several functions, the module docstring has to be at the very top of the file, prior to the
import
statements.
We use the Google documentation style. A very good set of examples of Google style documentation for functions, modules, classes etc. can be found here.
Function arguments and returns:
Function arguments are simple to describe:
def func(arg1, arg2): """Summary line. Extended description of function. Args: arg1 (int): Description of arg1 arg2 (str): Description of arg2 Returns: bool: Description of return value """ return True
Solver settings:
If your code has a settings dictionary, with defaults and types then make sure that:
They are defined as class variables and not instance attributes.
Define a
settings_types
,settings_default
andsettings_description
dictionaries.After all your settings, update the docstring with the automatically generated settings table. You will need to import the
sharpy.utils.settings
modulesettings_types = dict() settings_default = dict() settings_description = dict() # keep adding settings settings_table = sharpy.utils.settings.SettingsTable() __doc__ += settings_table.generate(settings_types, settings_default ,settings_description)
See how your docs looks like!
Once you are done, run the following
SHARPy
command:
sharpy any_string -d
If you are making minor updates to docstrings (i.e. you are not documenting a previously undocumented function/class/module) you can simply change directory to
sharpy/docs
and run
make html
Your documentation will compile and warnings will appear etc. You can check the result by opening
docs/build/index.html
and navigating to your recently created page.
Make sure that before committing any changes in the documentation you update the entire
docs
directory by running
sharpy any_string -d
Thank you for reading through this and contributing to make SHARPy a better documented, more user friendly code!
Git branching model¶
For the development of SHARPy, we try to follow this branching model summarised by the schematic
BranchingModel
Credit: Vincent Driessen https://nvie.com/posts/a-successful-git-branching-model/
Therefore, attending to this model our branches have the following versions of the code:
master
: latest stable release - paired with the appropriate tag.develop
: latest stable development build. Features get merged to develop.rc-**
: release candidate branch. Prior to releasing tests are performed on this branch.dev_doc
: documentation development branch. All work relating to documentation gets done here.fix_**
: hotfix branch.dev_**
: feature development branch.
If you contribute, please make sure you know what branch to work from. If in doubt please ask!
Commit names are also important since they are the backbone of the code’s change log. Please write concise commit titles and explain the main changes in the body of the commit message. An excellent guide on writing good commit messages can be found here.
For developers:¶
Releasing a new version¶
In the release candidate branch:
Update the version number in the docs configuration file
docs/conf.py
Update
version.json
fileUpdate version in
sharpy/__init__.py
fileCommit, push and wait for tests to pass
Merge release candidate branch into
master
branch
In the master
branch:
Run the github_changelog_generator tool locally with the following parameters:
github_changelog_generator -u imperialcollegelondon -p sharpy -t <your_github_token> --future-release <new_release_version>
Create a release tag. IMPORTANT: ensure it is an annotated tag, otherwise the version and commit number in SHARPy will not display properly
git tag -a <tagname> git push origin --tags -f
where
<tagname>
is something like2.0
.Create the GitHub release, choosing the newly created tag from the dropdown menu. Do not create a tag from the dropdown menu directly because it will not be an annotated tag
The SHARPy Case files¶
SHARPy takes as input a series of .h5
files that contain the numerical data and a .sharpy
file that contains
the settings for each of the solvers. How these files are generated is at the user’s discretion, though templates are
provided, and all methods are valid as long as the required variables are provided with the appropriate format.
Modular Framework¶
SHARPy is built with a modular framework in mind. The following diagram shows the strutuctre of a nonlinear, time marching aeroelastic simulation

Each of the blocks correspond to individual solvers with specific settings. How we choose which solvers to run, in which order and with what settings is done through the solver configuration file, explained in the next section.
Solver configuration file¶
The solver configuration file is the main input to SHARPy. It is a ConfigObj
formatted file with the .sharpy
extension. It contains the settings for each of the solvers and the order in which
to run them.
A typical way to assemble the solver configuration file is to place all your desired settings
in a dictionary and then convert to and write your ConfigObj
. If a setting is not provided the default value will be used. The settings that each solver takes, its type and default value are explained in their relevant documentation pages.
import configobj
filename = '<case_route>/<case_name>.sharpy'
config = configobj.ConfigObj()
config.filename = filename
config['SHARPy'] = {'case': '<your SHARPy case name>', # an example setting
# Rest of your settings for the PreSHARPy class
}
config['BeamLoader'] = {'orientation': [1., 0., 0.], # an example setting
# Rest of settings for the BeamLoader solver
}
# Continue as above for the remainder of solvers that you would like to include
# finally, write the config file
config.write()
The resulting .sharpy
file is a plain text file with your specified settings for each of
the solvers.
Note that, therefore, if one of your settings is a np.array
, it will get transformed into
a string of plain text before being read by SHARPy. However, any setting with list(float)
specified as its setting type will get converted into a np.array
once it is read by SHARPy.
FEM file¶
The case.fem.h5
file has several components. We go one by one:
num_node_elem [int]
: number of nodes per element.Always 3 in our case (3 nodes per structural elements - quadratic beam elements).
num_elem [int]
: number of structural elements.num_node [int]
: number of nodes.For simple structures, it is
num_elem*(num_node_elem - 1) - 1
. For more complicated ones, you need to calculate it properly.coordinates [num_node, 3]
: coordinates of the nodes in body-attached FoR (A).connectivites [num_elem, num_node_elem]
: Beam element’s connectivities.Every row refers to an element, and the three integers in that row are the indices of the three nodes belonging to that elem. Now, the catch: the ordering is not as you’d think. Order them as
[0, 2, 1]
. That means, first one, last one, central one. The following image shows the node indices inside the circles representing the nodes, the element indices in blue and the resulting connectivities matrix next to it. Connectivities are tricky when considering complex configurations. Pay attention at the beginning and you’ll save yourself a lot of trouble.stiffness_db [:, 6, 6]
: database of stiffness matrices.The first dimension has as many elements as different stiffness matrices are in the model.
elem_stiffness [num_elem]
: array of indices (starting at 0).It links every element (index) to the stiffness matrix index in
stiffness_db
. For exampleelem_stiffness[0] = 0
;elem_stiffness[2] = 1
means that the element0
has a stiffness matrix equal tostiffness_db[0, :, :]
, and the second element has a stiffness matrix equal tostiffness_db[1, :, :]
.The shape of a stiffness matrix, \(\mathrm{S}\) is:
\[\begin{split}\mathrm{S} = \begin{bmatrix} EA & & & & & \\ & GA_y & & & & \\ & & GA_z & & & \\ & & & GJ & & \\ & & & & EI_y & \\ & & & & & EI_z \\ \end{bmatrix}\end{split}\]with the cross terms added if needed.
mass_db
andelem_mass
follow the same scheme than the stiffness, but the mass matrix is given by:\[\begin{split}\mathrm{M} = \begin{bmatrix} m\mathbf{I} & -\tilde{\boldsymbol{\xi}}_{cg}m \\ \tilde{\boldsymbol{\xi}}_{cg}m & \mathbf{J}\\ \end{bmatrix}\end{split}\]where \(m\) is the distributed mass per unit length \(kg/m\) , \((\tilde{\bullet})\) is the skew-symmetric matrix of a vector and \(\boldsymbol{\xi}_{cg}\) is the location of the centre of gravity with respect to the elastic axis in MATERIAL (local) FoR. And what is the Material FoR? This is an important point, because all the inputs that move WITH the beam are in material FoR. For example: follower forces, stiffness, mass, lumped masses…
The material frame of reference is noted as \(B\). Essentially, the \(x\) component is tangent to the beam in the increasing node ordering, \(z\) looks up generally and \(y\) is oriented such that the FoR is right handed.
In the practice (vertical surfaces, structural twist effects…) it is more complicated than this. The only sure thing about \(B\) is that its \(x\) direction is tangent to the beam in the increasing node number direction. However, with just this, we have an infinite number of potential reference frames, with \(y\) and \(z\) being normal to \(x\) but rotating around it. The solution is to indicate a
for_delta
, or frame of reference delta vector (\(\Delta\)).Now we can define unequivocally the material frame of reference. With \(x_B\) and \(\Delta\) defining a plane, \(y_b\) is chosen such that the \(z\) component is oriented upwards with respect to the lifting surface.
From this definition comes the only constraint to \(\Delta\): it cannot be parallel to \(x_B\).
frame_of_reference_delta [num_elem, num_node_elem, 3]
: rotation vector to FoR \(B\).contains the \(\Delta\) vector in body-attached (\(A\)) frame of reference.
As a rule of thumb:
\[\begin{split}\Delta = \begin{cases} [-1, 0, 0], \quad \text{if right wing} \\ [1, 0, 0], \quad \text{if left wing} \\ [0, 1, 0], \quad \text{if fuselage} \\ [-1, 0, 0], \quad \text{if vertical fin} \\ \end{cases}\end{split}\]These rules of thumb only work if the nodes increase towards the tip of the surfaces (and the tail in the case of the fuselage).
structural_twist [num_elem, num_node_elem]
: Element twist.Technically not necessary, as the same effect can be achieved with
FoR_delta
.boundary_conditions [num_node]
: boundary conditions.An array of integers
(np.zeros((num_node, ), dtype=int))
and contains all0
except forOne node NEEDS to have a
1
, this is the reference node. Usually, the first node has 1 and is located in[0, 0, 0]
. This makes things much easier.If the node is a tip of a beam (is not attached to 2 elements, but just 1), it needs to have a
-1
.
beam_number [num_elem]
: beam index.Is another array of integers. Usually you don’t need to modify its value. Leave it at 0.
app_forces [num_elem, 6]
: applied forces and moments.Contains the applied forces
app_forces[:, 0:3]
and momentsapp_forces[:, 3:6]
in a given node.Important points: the forces are given in Material FoR (check above). That means that in a symmetrical model, a thrust force oriented upstream would have the shape
[0, T, 0, 0, 0, 0]
in the right wing, while the left would be[0, -T, 0, 0, 0, 0]
. Likewise, a torsional moment for twisting the wing leading edge up would be[0, 0, 0, M, 0, 0]
for the right, and[0, 0, 0, -M, 0, 0]
for the left. But careful, because an out-of-plane bending moment (wing tip up) has the same sign (think about it).lumped_mass [:]
: lumped masses.Is an array with as many masses as needed (in kg this time). Their order is important, as more information is required to implement them in a model.
lumped_mass_nodes [:]
: Lumped mass nodes.Is an array of integers. It contains the index of the nodes related to the masses given in lumped_mass in order.
lumped_mass_inertia [:, 3, 3]
: Lumped mass inertia.Is an array of
3x3
inertial tensors. The relationship is set by the ordering as well.lumped_mass_position [:, 3]
: Lumped mass position.Is the relative position of the lumped mass with respect to the node (given in
lumped_masss_nodes
) coordinates. ATTENTION: the lumped mass is solidly attached to the node, and thus, its position is given in Material FoR.
Aerodynamics file¶
All the aerodynamic data is contained in case.aero.h5
.
It is important to know that the input for aero is usually based on elements (and inside the elements, their nodes). This causes sometimes an overlap in information, as some nodes are shared by two adjacent elements (like in the connectivities graph in the previous section). The easier way of dealing with this is to make sure the data is consistent, so that the properties of the last node of the first element are the same than the first node of the second element.
Item by item:
airfoils
: Airfoil group.In the
aero.h5
file, there is a Group calledairfoils
. The airfoils are stored in this group (which acts as a folder) as a two-column matrix with \(x/c\) and \(y/c\) in each column. They are named'0', '1'
, and so on.chords [num_elem, num_node_elem]
: ChordIs an array with the chords of every airfoil given in an element/node basis.
twist [num_elem, num_node_elem]
: Twist.Has the twist angle in radians. It is implemented as a rotation around the local \(x\) axis.
sweep [num_elem, num_node_elem]
: Sweep.Same here, just a rotation around \(z\).
airfoil_distribution [num_elem, num_node_elem]
: Airfoil distribution.Contains the indices of the airfoils that you put previously in
airfoils
.surface_distribution [num_elem]
: Surface integer array.It contains the index of the surface the element belongs to. Surfaces need to be continuous, so please note that if your beam numbering is not continuous, you need to make a surface per continuous section.
surface_m [num_surfaces]
: Chordwise panelling.Is an integer array with the number of chordwise panels for every surface.
m_distribution [string]
: Discretisation method.Is a string with the chordwise panel distribution. In almost all cases, leave it at
uniform
.aero_node [num_node]
: Aerodynamic node definition.Is a boolean (
True
orFalse
) array that indicates if that node has a lifting surface attached to it.elastic_axis [num_elem, num_node_elem]
: elastic axis.Indicates the elastic axis location with respect to the leading edge as a fraction of the chord of that rib. Note that the elastic axis is already determined, as the beam is fixed now, so this settings controls the location of the lifting surface wrt the beam.
control_surface [num_elem, num_node_elem]
: Control surface.Is an integer array containing
-1
if that section has no control surface associated to it, and0, 1, 2 ...
if the section belongs to the control surface0, 1, 2 ...
respectively.control_surface_type [num_control_surface]
: Control Surface type.Contains
0
if the control surface deflection is static, and1
is it is dynamic.control_surface_chord [num_control_surface]
: Control surface chord.Is an INTEGER array with the number of panels belonging to the control surface. For example, if
M = 4
and you want your control surface to be \(0.25c\), you need to put1
.control_surface_hinge_coord [num_control_surface]
: Control surface hinge coordinate.Only necessary for lifting surfaces that are deflected as a whole, like some horizontal tails in some aircraft. Leave it at
0
if you are not modelling this.airfoil_efficiency [num_elem, num_node_elem, 2, 3]
: Airfoil efficiency.This is an optional setting that introduces a user-defined efficiency and constant terms to the mapping between the aerodynamic forces calculated at the lattice grid and the structural nodes. The formatting of the 4-dimensional array is simple. The first two dimensions correspond to the element index and the local node index. The third index is whether the term is the multiplier to the force
0
or a constant term1
. The final term refers to, in the local, body-attachedB
frame, the factors and constant terms for:fy, fz, mx
. For more information on how these factors are included in the mapping terms seesharpy.aero.utils.mapping.aero2struct_force_mapping()
.polars
Group (optional): Use airfoil polars to correct aerodynamic forces.This is an optional group to add if correcting the aerodynamic forces using airfoil polars is desired. A polar should be included for each airfoil defined. Each entry consists of a 4-column table. The first column corresponds to the angle of attack (in radians) and then the
C_L
,C_D
andC_M
.
Time-varying force input file (.dyn.h5
)¶
The .dyn.h5
file is an optional input file that may contain force and acceleration inputs that vary with time.
This is intended for use in dynamic problems. For SHARPy to look for and use this file the setting unsteady
in the
BeamLoader
must be turned to on
.
Appropriate data entries in the .dyn.h5
include:
dynamic_forces [num_t_steps, num_node, 6]
: Dynamic forces in body attachedB
frame.Forces given at each time step, for each node and then for the 6 degrees of freedom (
fx, fy, fz, mx, my, mz
) in a body-attached (local) frame of referenceB
.for_pos [num_t_steps, 6]
: Body frame of reference (A FoR) position.Position of the reference frame A in time.
for_vel [num_t_steps, 6]
: Body frame of reference (A FoR) velocity.Velocity of the reference frame A in time.
for_acc [num_t_steps, 6]
: Body frame of reference (A FoR) acceleration.Acceleration of the reference frame A in time.
If a case is restarted from a pickle file, the .dyn.h5 file should include the dynamic information for the previous simulation (that will be discarded) and the information for the new simulation.
Post-Processing¶
AeroForcesCalculator¶
AerogridPlot¶
AsymptoticStability¶
BeamLoads¶
BeamPlot¶
- class sharpy.postproc.beamplot.BeamPlot[source]¶
Plots beam to Paraview format
The settings that this solver accepts are given by a dictionary, with the following key-value pairs:
Name
Type
Description
Default
include_rbm
bool
Include frame of reference rigid body motion
True
include_FoR
bool
Include frame of reference variables
False
include_applied_forces
bool
Write beam applied forces
True
include_applied_moments
bool
Write beam applied moments
True
name_prefix
str
Name prefix for files
output_rbm
bool
Write
csv
file with rigid body motion dataTrue
Cleanup¶
FrequencyResponse¶
LiftDistribution¶
- class sharpy.postproc.liftdistribution.LiftDistribution[source]¶
Calculates and exports the lift distribution on lifting surfaces
The settings that this solver accepts are given by a dictionary, with the following key-value pairs:
Name
Type
Description
Default
text_file_name
str
Text file name
lift_distribution.csv
coefficients
bool
Calculate aerodynamic lift coefficients
True
rho
float
Reference freestream density [kg/m³]
1.225
PickleData¶
PlotFlowField¶
- class sharpy.postproc.plotflowfield.PlotFlowField[source]¶
Plots the flow field in Paraview and computes the velocity at a set of points in a grid.
The settings that this solver accepts are given by a dictionary, with the following key-value pairs:
Name
Type
Description
Default
Options
postproc_grid_generator
str
Generator used to create grid and plot flow field
GridBox
GridBox
postproc_grid_input
dict
Dictionary containing settings for
postproc_grid_generator
.{}
velocity_field_generator
str
Chosen velocity field generator
SteadyVelocityField
velocity_field_input
dict
Dictionary containing settings for the selected
velocity_field_generator
.{}
dt
float
Time step.
0.1
include_external
bool
Include external velocities.
True
include_induced
bool
Include induced velocities.
True
stride
int
Number of time steps between plots.
1
num_cores
int
Number of cores to use.
1
vortex_radius
float
Distance below which inductions are not computed.
sharpy.utils.constants.vortex_radius_def
SaveData¶
SaveParametricCase¶
StallCheck¶
UDPout¶
WriteVariablesTime¶
A Short Debugging Guide¶
We have put together a list of common traps you may fall into, hopefully you will find the tools here to get yourself out of them!
Did you forget conda activate sharpy_env and source bin/sharpy_vars.sh?
If you do in the terminal: which sharpy, do you get the one you want?
If you do which python, does the result point to anaconda3/envs/sharpy_env/bin (or similar)?
Wrong input (inconsistent connectivities, mass = 0…)
Sometimes not easy to detect. For the structural model, run BeamLoader and BeamPlot with no structural solver in between. Go over the structure in Paraview. Check the fem.h5 file with HDFView.
Remember that connectivities are ordered as $[0, 2, 1]$ (the central node goes last).
Make sure the num_elem and num_node variables are actually your correct number of elements and nodes.
Not running the actual case you want to.
Cleanup the folder and regenerate the case
Not running the SHARPy version you want.
Check at the beginning of the execution the path to the SHARPy folder.
Not running the correct branch of the code.
You probably want to use develop. Again, check the first few lines of SHARPy output.
Very different (I’m talking orders of magnitude) stiffnesses between nodes or directions?
Maybe the UVLM requires a smaller a smaller vortex core cutoff (only for linear UVLM simulations, as the nonlinear uses another vortex core model).
Newmark damping is not enough for this case?
Do you have an element with almost 0 mass or inertia?
Are you mass matrices consistent? Check that \(I_{xx} = I_{yy} + I_{zz}\).
Have a look at the \(\dot{\Gamma}\) filtering and numerical parameters in the settings of StepUvlm and DynamicCoupled.
Add more relaxation to the StaticCoupled or DynamicCoupled solvers.
The code has a bug (depending on where, it may be likely).
Go over the rest of the list. Plot the case in paraview. Go over the rest of the list again. Prepare the simplest example that reproduces the problem and raise an issue.
- The code diverges because it has to (physical unstable behaviour)
Then don’t complain
- Your model still doesn’t work and you don’t know why.
import pdb; pdb.set_trace() and patience
If nothing else works… get a rubber duck (or a very very patient good friend) and go over every step

If your model doesn’t do what it is supposed to do:
Check for symmetric response where the model is symmetric.
If it is not, run the beam solver first and make sure your properties are correct. Make sure the matrices for mass and stiffness are rotated if they need to be (remember the Material FoR definition and the for_delta?)
Now run the aerodynamic solver only and double check that the forces are symmetric.
Make sure your tolerances are low enough so that at least 4 FSI iterations are performed in StaticCoupled or DynamicCoupled.
Make sure your inputs are correct. For example: a dynamic case can be run with \(u_\infty = 0\) and the plane moving forwards, or \(u_\infty = x\) whatever and the plane velocity = 0. It is very easy to mix both, and end up with double the effective incoming speed (or none).
Run simple stuff before coupling it. For example, if your wing tip deflections don’t match what you’d expect, calculate the deflection under a small tip force (not too small, make sure the deflection is > 1% of the length!) by hand, and compare.
It is more difficult to do the same with the UVLM, as you need a VERY VERY high aspect ratio to get close to the 2D potential solutions. You are going to have to take my word for it: the UVLM works.
But check the aero grid geometry in Paraview, including chords lengths and angles.
Frequently Asked Questions [FAQs]¶
Over the years, we have gathered a valuable experience running SHARPy so we would like to collect here a few of the most frequently asked questions we get here to hopefully help other users.
In addition to the questions listed below, do check the issues page in our GitHub repo as you may find useful information there. Do also check our Short Debugging Guide.
[Q] I get a
ModuleNotFound Error
when trying to run SHARPy.[A] Make sure you have loaded the SHARPy variables using the command
source <path_to_sharpy>/bin_sharpy_var.sh
.[Q] When plotting the aerodynamic forces in Paraview from the UVLM, the forces at the boundary between two surfaces (for instance at the wing root) appears halved. Is my simulation incorrect?
[A] This is most likely not an issue with your simulation. We have observed over time that Paraview actually only plots the result from one of the surfaces, hence why it appears half of what it should be. If you extract the forces without using Paraview using the WriteVariablesTime postprocessor you will get the correct result.
[Q] My time-domain simulation does not converge. I get a
SolverNotConverged
error. What can I do?[A] This is quite an open question and it could be for a wide variety of reasons. Things that should be in your First Aid kit for these situations:
Is your tolerance appropriate? If you raise the tolerance to something (maybe unreasonably) high does it converge?
Is your number of iterations sufficient? Increase the number of maximum allowed iterations.
Is there anything happening at all in your simulation? We have all fallen into the trap of trying to run a time domain simulation of something that is already in steady state. I.e. you calculate its static equilibrium and then try to advance in time. Since nothing is happening the convergence criteria in the solvers may not be triggered and reach the maximum number of iterations. Solution: make sure something happens in your time domain simulation: gusts, external forces, control surface deflections…
Are you giving your simulation too much of a “kick”? Sometimes we simulate things that dramatically change the state of the problem from one time step to another (like adding very large external forces at once) which may lead to trouble. You can choose to load the forces progressively by increasing the
num_load_steps
setting in our structural solvers.
Hopefully this list will grow over time with some of the common questions previous users encounter. If you cannot solve
your problem please open an issue on Github and assign it the
label label:question
so we can keep track of it and others can benefit of the discussion.
Citing SHARPy¶
SHARPy has been published in the Journal of Open Source Software (JOSS) and the relevant paper can be found here.
If you are using SHARPy for your work, please remember to cite it using the paper in JOSS as:
del Carre et al., (2019). SHARPy: A dynamic aeroelastic simulation toolbox for very flexible aircraft and wind turbines. Journal of Open Source Software, 4(44), 1885, https://doi.org/10.21105/joss.01885
The bibtex entry for this citation is:
@Article{delCarre2019,
doi = {10.21105/joss.01885},
url = {https://doi.org/10.21105/joss.01885},
year = {2019},
month = dec,
publisher = {The Open Journal},
volume = {4},
number = {44},
pages = {1885},
author = {Alfonso del Carre and Arturo Mu{\~{n}}oz-Sim\'on and Norberto Goizueta and Rafael Palacios},
title = {{SHARPy}: A dynamic aeroelastic simulation toolbox for very flexible aircraft and wind turbines},
journal = {Journal of Open Source Software}
}
Indices and tables¶
Contact¶
SHARPy is developed at the Department of Aeronautics, Imperial College London. To get in touch, visit the Loads Control and Aeroelastics Lab website.