You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.3 KiB
C#
52 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SmartWells
|
|
{
|
|
/// <summary>
|
|
/// 井平台参数配置
|
|
/// </summary>
|
|
public class WellsConfig
|
|
{
|
|
/// <summary>
|
|
/// 井名称
|
|
/// </summary>
|
|
public string WellNamePrefix { get; set; } = "井";
|
|
/// <summary>
|
|
/// 井支数
|
|
/// </summary>
|
|
public int BranchCount { get; set; } = 6;
|
|
/// <summary>
|
|
/// 靶前距
|
|
/// </summary>
|
|
public double BranchOffset { get; set; } = 500;
|
|
/// <summary>
|
|
/// 水平段长度
|
|
/// </summary>
|
|
public double BranchLength { get; set; } = 1800;
|
|
/// <summary>
|
|
/// 井支间距
|
|
/// </summary>
|
|
public double BranchSpace { get; set; } = 300;
|
|
/// <summary>
|
|
/// 是否进行双侧布井
|
|
/// </summary>
|
|
public bool DeploySide2 { get; set; } = true;
|
|
/// <summary>
|
|
/// 是否进行单侧布井
|
|
/// </summary>
|
|
public bool DeploySide1 { get; set; } = true;
|
|
/// <summary>
|
|
/// 是否是二次布井
|
|
/// </summary>
|
|
public bool DeployAgain { get; set; } = false;
|
|
|
|
|
|
public WellsConfig() { }
|
|
|
|
}
|
|
}
|