BUILD FAILED--Error in Build solver

Error in Build solver.
The environment is WIN10,Miniforge3,mfix24.1

How should I solve it?

dempic_2024-04-17T194638.301211.zip (183.9 KB)

I will upload the file here.
But I think the problem is probably with the environment, not the program itself

Hi. It looks like you (or someone) developed this model on an earlier version of MFiX and then upgraded to 24.1. The file des_thermo_newvalues.f has changed in the main MFiX source and the project you uploaded has a modified version, which was based off an earlier version and does not have the latest changes.

Try running

sdiff  des_thermo_newvalues.f $CONDA_PREFIX/share/mfix/src/model

It appearst that when the new GSP model was added, a new subroutine INTRA_HEAT_COND_GSP was added to the des_thermo_newvalues module, which your modified version lacks. You need to either add this subroutine to your des_thermo_newvalues.f or copy the file des_thermo_newvalues.f from the source directory to your project folder and re-apply your (or chunlei’s?) changes, if they are in fact necessary for the model - otherwise just delete the modified file.

This does the trick. (But now you have a seeding failure)
des_thermo_newvalues.f (7.5 KB)

Thank you very much.
I will try it again.