This commit is contained in:
vinciyan 2025-05-12 10:17:10 +08:00
parent af8150b63c
commit bdd059806d

View File

@ -36,10 +36,10 @@ namespace FortranWebApi.Services
private static extern void SUB_SHUILIANGJISUAN( private static extern void SUB_SHUILIANGJISUAN(
ref int NDATA, ref int NDATA,
ref float LONG, ref float LONG,
ref int INbd, ref float INbd,
ref int INzd, ref float INzd,
ref int INsm, ref float INsm,
ref int INrough, ref float INrough,
ref float ZZ0, ref float ZZ0,
ref int DB, ref int DB,
float[] UQ, float[] UQ,
@ -75,10 +75,10 @@ namespace FortranWebApi.Services
// 提取参数 // 提取参数
int NDATA = GetIntParameter(parameters, "NDATA"); int NDATA = GetIntParameter(parameters, "NDATA");
float LONG = GetFloatParameter(parameters, "LONG"); float LONG = GetFloatParameter(parameters, "LONG");
int INbd = GetIntParameter(parameters, "INbd"); float INbd = GetFloatParameter(parameters, "INbd");
int INzd = GetIntParameter(parameters, "INzd"); float INzd = GetFloatParameter(parameters, "INzd");
int INsm = GetIntParameter(parameters, "INsm"); float INsm = GetFloatParameter(parameters, "INsm");
int INrough = GetIntParameter(parameters, "INrough"); float INrough = GetFloatParameter(parameters, "INrough");
float ZZ0 = GetFloatParameter(parameters, "ZZ0"); float ZZ0 = GetFloatParameter(parameters, "ZZ0");
int DB = GetIntParameter(parameters, "DB"); int DB = GetIntParameter(parameters, "DB");
float[] UQ = GetFloatArrayParameter(parameters, "UQ"); float[] UQ = GetFloatArrayParameter(parameters, "UQ");