@@ -344,29 +344,29 @@ def write_external_file(CTrs, CPrs):
344344# Automatically plot the computed propeller performance.
345345
346346pl .figure (1 )
347- pl .plot (r , dCt_optimal , "r" , markersize = 4 , label = "$ \ \ frac{dCT}{d\overline{r}}$" )
348- pl .plot (r , dCp , "k" , markersize = 4 , label = "$ \ \ frac{dCP}{d\overline{r}}$" )
347+ pl .plot (r , dCt_optimal , "r" , markersize = 4 , label = r"$ \frac{dCT}{d\overline{r}}$" )
348+ pl .plot (r , dCp , "k" , markersize = 4 , label = r"$ \frac{dCP}{d\overline{r}}$" )
349349pl .grid (True )
350350pl .legend (numpoints = 3 )
351- pl .xlabel ("$\overline{r}$" )
351+ pl .xlabel (r "$\overline{r}$" )
352352pl .ylabel ("" )
353353pl .title ("Load Distribution" )
354354
355355pl .figure (2 )
356- pl .plot (chi , a_optimal , "r" , markersize = 4 , label = "$a$" )
357- pl .plot (chi , ap_optimal , "k" , markersize = 4 , label = "$a^1$" )
356+ pl .plot (chi , a_optimal , "r" , markersize = 4 , label = r "$a$" )
357+ pl .plot (chi , ap_optimal , "k" , markersize = 4 , label = r "$a^1$" )
358358pl .grid (True )
359359pl .legend (numpoints = 3 )
360- pl .xlabel ("$\chi$" )
360+ pl .xlabel (r "$\chi$" )
361361pl .ylabel ("" )
362362pl .title ("Interference Factors" )
363363
364364if prandtl_correction :
365365 pl .figure (3 )
366366 pl .plot (r , F , "k" , markersize = 4 )
367367 pl .grid (True )
368- pl .xlabel ("$\overline{r}$" )
369- pl .ylabel ("$F(\overline{r})$" )
368+ pl .xlabel (r "$\overline{r}$" )
369+ pl .ylabel (r "$F(\overline{r})$" )
370370 pl .title ("Tip Loss Prandtl Correction Function" )
371371
372372pl .show ()
0 commit comments