Soil behaviour type and correlations in Datgel CPT Tool, unlink?

Problem

Due to the inherent soil behaviour type inaccuracy and limitations of the automatic interpretation accuracy, is it possible to calculate parameters for all depth ranges, independent of classified soil type, so that the interpreting engineer and decide where to draw the appropriate parameter values?

Solution

You are referring to the Soil Type check at the beginning of many formulas in the Formula Tool.
For example, Small Strain Shear Modulus 1

if(
SoilType == "Coarse" || SoilType == "Mixed" || SoilType == ""
,
first(PtC1, PjC1) * ((qc * 10^3)/(SigDV0)^0.5)^first(PtC2, PjC2) * qc
,
""
)

You can go through to formulas and remove the check (that is, the code in red).