Preparing Wall Heat Transfer Data in es-ice

Calculating spatially varying, cycle-averaged wall heat transfer data in es-ice produces CAE data, which can be imported into Simcenter STAR-CCM+. This es-ice post-processing facility generates a .dbs file, containing the CAE model and calculates eight data-sets.

As the .usr file can only contain six data-sets at most, es-ice writes two .usr files, with the data described below:

  • Data file 1:
    Register 1: Average Heat Transfer Coefficient (Watts/m2-K)
    h¯=1θ2θ1θ1θ2h(θ)dθ
    Register 2: Average Near-Wall Gas Temperature (K)
    T¯g=1(θ2θ1)h¯θ1θ2h(θ)Tg(θ)dθ
    Register 3: Average Heat Flux (Watts/m2)
    q"¯=1(θ2θ1)θ1θ2q"(θ)dθ
    Register 4: Average Wall Boundary Temperature (K)
    T¯w=1(θ2θ1)h¯θ1θ2h(θ)Tw(θ)dθ
    Register 5: Average y+
    y+¯=1(θ2θ1)θ1θ2y+(θ)dθ
    Register 6: Average Distance from Boundary to y+=100 (m)
    D¯=1(θ2θ1)θ1θ2D(θ)dθ
  • Data file 2:

    Register 1: Average Heat Transfer Coefficient at y+=100 (Watts/m2-K)

    hy¯=1θ2θ1θ1θ2hy(θ)dθ

    Register 2: Average Near-Wall Gas Temperature at y+=100 (K)

    T¯y=1(θ2θ1)h¯θ1θ2hy(θ)Ty(θ)dθ

The nomenclature for the above equations is provided below:

Notation Description
θ Crank Angle (degrees)
θ1 Start Crank Angle (degrees)
θ2 End Crank Angle (degrees)
h Heat Transfer (W/m2-K)
hy Heat Transfer at y+=100 (W/m2-K)
Tg Temperature of near-wall gas (K)
Tw Temperature of wall boundary (K)
Ty Temperature at y+=100 (K)
q" Heat Flux (W/m2)
y+ Non-dimensional wall co-ordinate (see Eqn. (1584))
D Distance from boundary to y+=100 (m)

The solution data is defined with respect to cell IDs, which must match exactly to the cell IDs in the .dbs file. To ensure the cell IDs correlate, follow the procedure below to generate this solution data.

  1. Run an es-ice analysis with the Heat Transfer option selected in the Star Controls > Post-processing > Global Settings panel. This generates heat transfer data (es-ice_htx.pos) while STAR is obtaining a solution.

  2. When the solver is complete, open the Post-process panel and select Heat Transfer from the drop-down menu at the top of the panel.

  3. Click the ellipsis to select es-ice_htx.pos from the file browser and then click Add after selected. STAR has generated this file when running the analysis.

  4. Click Load post data and enter an appropriate Crank angle range to cover the last full engine cycle. Then click Cycle average to calculate the cycle-averaged wall heat transfer data. The start crank angle (θ1 in the equations above) is entered in the first text field, and the end crank angle (θ2) in the second text field.

  5. Specify the file names of the .dbs and two .usr files, set the database ID to 1 and click Write cycle avg. The CAE model (.dbs) and the solution data (.usr) is located in the current working directory.

Currently, Simcenter STAR-CCM+ can only import coded (ASCII) format .usr files, whereas es-ice generates binary format files. Therefore, an extra step is required to convert the binary format file to a coded format file in pro-STAR.

  1. Import the .dbs file into pro-STAR using the following commands:
    dbase, open, <filename>.dbs
    dbase, get, 1

    This ensures the cell IDs in the solution data match the CAE model.

  2. Read the binary format .usr file into pro-STAR using the following commands:
    getu, <filename>.usr, cell, all, binary
  3. Save the solution data to a coded format .usr file with the following commands:
    savu, <filename>.usr, all, coded, all
  4. Repeat steps 2 and 3 for the second .usr file.