Ignore:
Timestamp:
Jul 1, 2025, 11:39:58 AM (5 days ago)
Author:
jbclement
Message:

PEM:
Addition of 2 figures in the outputs of "visu_evol_layering.py": (i) the stratification over time colored using RGB ternary mix of H2O ice, CO2 ice and dust; (ii) the dust-to-ice ratio in the stratification over time.
JBC

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.COMMON/libf/evolution/deftank/visu_layering.py

    r3792 r3819  
    157157    # 1. Simple subplots
    158158    fig, axes = plt.subplots(1, n_components, sharey=True, constrained_layout=True)
    159     fig.suptitle('Simple Content Profiles for Stratification')
     159    fig.suptitle('Simple Content Profiles for Stratification', fontweight='bold')
    160160
    161161    for idx, ax in enumerate(axes):
     
    183183    plt.xlabel('Volume Fraction [m^3/m^3]')
    184184    plt.ylabel('Elevation [m]')
    185     plt.title('Content Profiles for Stratification')
     185    plt.title('Content Profiles for Stratification', fontweight='bold')
    186186    plt.legend()
    187187    plt.savefig('layering_overlaid_profiles.png')
     
    206206    plt.xlabel('Volume Fraction [m^3/m^3]')
    207207    plt.ylabel('Elevation [m]')
    208     plt.title('Stacked Content Profiles for Stratification')
     208    plt.title('Stacked Content Profiles for Stratification', fontweight='bold')
    209209    plt.legend(loc='center left', bbox_to_anchor=(1, 0.5))
    210210    plt.tight_layout()
     
    223223    plt.ylim(0, 1)
    224224    plt.ylabel('Volume Fraction [m^3/m^3]')
    225     plt.title(f'Composition of Stratum {istr_index + 1}')
     225    plt.title(f'Composition of Stratum {istr_index + 1}', fontweight='bold')
    226226    # Add major and minor grids on y-axis for the histogram
    227227    plt.grid(which='major', axis='y', linestyle='--', linewidth=0.5, color='0.8')
Note: See TracChangeset for help on using the changeset viewer.