Workflow examples: Heavy-Ion

Hi @ce-alpha-testers,

Continuing the example workflows, which were done for the Neutron Star-related modules here, below are some of the Heavy-Ion related workflow examples.

Again, thank you all for taking the time to give us valuable feedback, which helps us improve the MUSES Framework. Hopefully you’ve successfully followed the steps in our Quickstart guide.

We would greatly appreciate it if you can run the workflows, tweak the configuration parameters, and let us know if something does not work or could be improved.

You can run all the examples below by replacing the configuration in the current wf_config in the Quickstart guide.

- BQS

Example
processes:
- name: eos_taylor_4d
  module: eos_taylor_4d
  config:
    parameters:
      T_min: 30
      T_max: 50
      dT: 5
      mu_B_min: 0
      mu_B_max: 10
      dmu_B: 5
      mu_Q_min: 0
      mu_Q_max: 10
      dmu_Q: 5
      mu_S_min: 0
      mu_S_max: 10
      dmu_S: 5
    switchers:
      get_P: True
      get_Chis_zero_mu: True
components:
- type: group
  name: singleton
  group:
  - eos_taylor_4d

- TExS

Example
processes:
- name: eos_ising_texs_2d
  module: eos_ising_texs_2d
  config:
    parameters:
      T_min: 30.0
      T_max: 50.0
      dT: 10.0
      mu_B_min: 0.0
      mu_B_max: 20.0
      dmu_B: 10.0
      muBC: 350
      alpha12: 90.0
      w: 5.0
      rho: 1.0
    switchers:
      get_P: True
components:
- type: group
  name: singleton
  group:
  - eos_ising_texs_2d

- Holography

Example
processes:
- name: holographic
  module: holographic_eos
  config:
    model_type: polynomial_hyperbolic
    eos_options:
      eos_stages:
        interpolate_points: true
        maxwell_construction: true
      temperature_options:
        T_max: 400
        T_min: 100
        T_step: 20
        N_phi0_lines: 100
      chemical_potential_options:
        mu_B_max: 800
        mu_B_min: 0
        mu_B_step: 1.0
        N_Phi1_lines: 1000
    critical_point_options:
      phi0_min: 0.5
      phi0_max: 7
      N_lines: 800
      max_tries: 1000
      initial_Phi1_step: 0.0001
      max_Phi1_step: 1
      prec_T: 0.00001
      prec_mu: 0.00001
      acc_T: 0.001
      acc_mu: 0.001
components:
- type: group
  name: holography_test
  group:
  - holographic