添加风速系数函数

This commit is contained in:
谷成伟 2024-12-06 09:49:45 +08:00
parent 3e7b5437a4
commit ea7be8e943

View File

@ -134,6 +134,9 @@ public class CalcService {
FunctionOffsetDate offsetDate = new FunctionOffsetDate(); FunctionOffsetDate offsetDate = new FunctionOffsetDate();
aviator.addFunction(offsetDate); aviator.addFunction(offsetDate);
FunctionWindSpeedFactor windSpeedFactor = new FunctionWindSpeedFactor(dataService,cacheService);
aviator.addFunction(windSpeedFactor);
} }
/** /**