Flight Test Engineering

Results 4 comments of Flight Test Engineering

Hello @JacobCadrinAubin, although I am working with another file, when changing the design and off-design points of the high_bypass_turbofan.py example, I ran into similar situation that you described. What worked...

pyCycle does not model the rotation dynamics of the turbomachinery so you will not be able to get what I understand you are looking for. Maybe a way to do...

Hello Pietro, I am using pyCycle to create an engine deck for the CF34-10E. I am in the process of recording a few videos. This is an amazing library and...

Hello NJC1012, straight from file pycycle/viewers.py: ``` def plot_compressor_maps(prob, element_names, eff_vals=np.array([0,0.5,0.55,0.6,0.65,0.7,0.75,0.8,0.85,0.9,0.95,1.0]),alphas=[0]): for e_name in element_names: comp = prob.model._get_subsystem(e_name) map_data = comp.options['map_data'] s_Wc = prob[e_name+'.s_Wc'] s_PR = prob[e_name+'.s_PR'] s_eff = prob[e_name+'.s_eff']...