Hi all,
I am currently working with ASPECT and trying to compute a steady-state thermal conduction solution as the initial temperature field. I found the continental geotherm
option in the Initial Temperature Model section of the ASPECT manual, which solves the steady-state conductive equation as described in Turcotte & Schubert (Ch. 4.6) and Chapman (1986). However, this model assumes a layered lithosphere with uniform thermal conductivity and radiogenic heating, which is not applicable to my case where the crust is non-uniform in thickness and where thermal conductivity and radiogenic heating depend on compositional fields.
To address this, I have considered two possible approaches:
- Direct Approach: Writing a custom plugin in the initial temperature model that solves the steady-state thermal conduction equation using compositional information. However, ASPECT does not currently provide a built-in solver for this equation alone. Instead, it solves the full thermal advection-diffusion equation, which requires a velocity field. Since I am not very familiar with ASPECT and deal.II, implementing this might be quite challenging for me. If there are some suggestions, I’d love to try that.
- Two-Step Approach: Running an ASPECT model until it reaches steady-state and then extracting the temperature field to use as the initial condition for a second model. However, I encountered difficulties with the ASCII data input format. The
ascii data
plugin for initial temperature supports only a structured grid (r, phi, theta), which does not directly match the unstructured hexahedral mesh output from my first model. Even when using a uniform grid (without refinement) in Model 1, it does not directly map to the expected format in Model 2.
For small datasets, I could interpolate the temperature field into an appropriate format, but my current model contains ~100 million points and several hundred million degrees of freedom, making 3D interpolation extremely computationally expensive. I attempted an interpolation process, but even after several hours, there was no output.
Some additional information during processing
Test model: I read the necessary xyz coordinate information and r phi theta, it is difficult to directly see the necessary connection between its shapes
The shape of the expected input r phi theta seems to be cone, but the cell profile of the output of the shell model seems to be different from the former.
(Sorry, due to new user restrictions, I can only put it in one picture.)
Request for Guidance
I would greatly appreciate any suggestions or insights on the following:
- Is there an existing way in ASPECT to solve the steady-state thermal conduction equation separately within the initial temperature model?
- If not, what would be the best approach to implement such a feature?
- Are there efficient methods to transfer a temperature field from an unstructured ASPECT output mesh to a new model’s initial condition, given the limitations of ASCII data input?
Thank you in advance for your time and help!
Ninghui Tian