NavisworksTransport/config.toml.example

77 lines
1.7 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# NavisworksTransport 系统配置文件
# 单位说明:长度单位均为米(m),时间单位为秒(s)
# 自动生成时间: 2025-10-11 10:50:00
[grid_generation]
# 网格单元大小(米)- 推荐值0.3-0.8
cell_size_meters = 0.5
# 车辆半径(米)- 用于障碍物膨胀计算
vehicle_radius_meters = 0.3
# 安全间隙(米)- 额外的安全距离
safety_margin_meters = 0.2
# 膨胀半径(网格单元数)
inflation_radius_cells = 2
# 扫描高度(米)
scan_height_meters = 0.1
[path_planning]
# 最大高度差(米)- 楼梯、坡道可接受的高度阈值
max_height_diff_meters = 0.35
# 车辆尺寸(米)
vehicle_height_meters = 2.0
vehicle_length_meters = 2.5
vehicle_width_meters = 1.8
# 默认路径策略:"Shortest" | "Straightest" | "SafetyFirst"
default_path_strategy = "Straightest"
# 启用路径优化(减少转弯点)
enable_path_optimization = true
[visualization]
# 网格点大小(像素)
grid_point_size = 5.0
# 路径线宽(像素)
path_line_width = 2.0
# 路径点大小(模型单位)
path_point_size = 50.0
# 启用网格可视化
enable_grid_visualization = false
# 启用多层网格可视化
enable_multi_layer_visualization = true
[animation]
# 默认动画速度(米/秒)
default_speed_meters_per_second = 1.5
# 动画帧率(帧/秒)
frame_rate = 30
# 步进间隔(毫秒)
step_interval_ms = 100
# 启用平滑插值
enable_smooth_interpolation = true
[collision]
# 碰撞检测步长(米)
detection_step_meters = 0.1
# 碰撞容差(米)
collision_tolerance_meters = 0.01
# 启用实时碰撞检测
enable_realtime_detection = true
# 自动生成碰撞报告
auto_generate_report = true