I am getting the following warning message when opening my model:
Warning, Entity # has already had a material assigned. The last assigned material will be used in the analysis.
Can you please suggest what could be causing this ?
This warning is reported upon opening a STAAD model if it contains one or more members that have been assigned multiple materials. For example, consider the following excerpt from the input command file of a model:
DEFINE MATERIAL STARTISOTROPIC STEELE 29000POISSON 0.3DENSITY 0.000283ALPHA 6e-06DAMP 0.03TYPE STEELSTRENGTH FY 36 FU 58 RY 1.5 RT 1.2ISOTROPIC CONCRETEE 3150POISSON 0.17DENSITY 8.68e-05ALPHA 5.5e-06DAMP 0.05G 1346.15TYPE CONCRETESTRENGTH FCU 4END DEFINE MATERIALCONSTANTSMATERIAL STEEL MEMB 1 TO 16 17 18 TO 23MATERIAL CONCRETE MEMB 17
As you can see, member # 17 has been assigned both STEEL and CONCRETE material properties. Correspondingly, when this model is opened the following warning message appears:
To resolve this, you must edit the command file so no members are assigned more than one material. In this example you could accomplish this by removing member # 17 from the STEEL material assignment as shown below:
DEFINE MATERIAL STARTISOTROPIC STEELE 29000POISSON 0.3DENSITY 0.000283ALPHA 6e-06DAMP 0.03TYPE STEELSTRENGTH FY 36 FU 58 RY 1.5 RT 1.2ISOTROPIC CONCRETEE 3150POISSON 0.17DENSITY 8.68e-05ALPHA 5.5e-06DAMP 0.05G 1346.15TYPE CONCRETESTRENGTH FCU 4END DEFINE MATERIALCONSTANTSMATERIAL STEEL MEMB 1 TO 16 18 TO 23MATERIAL CONCRETE MEMB 17
Once this is done, the warning message will no longer be reported when opening the model.