using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Forces
{
///
/// Implement properties for shear beam load
///
public interface IBeamSpanLoad : IAction
{
///
/// Value of level where action is applyied at, 0.5 is top surface of beam, -0.5 is bottom surface of beam
///
double RelativeLoadLevel { get; set; }
///
/// Ratio of substraction load from total shear force
///
double LoadRatio { get; set; }
///
/// Properties of combination of forces
///
IFactoredCombinationProperty CombinationProperty { get; set; }
}
}