Beam shear load views have been created;

This commit is contained in:
Evgeny Redikultsev
2025-03-15 21:22:03 +05:00
parent 382ff6ed36
commit e5d33351e2
39 changed files with 765 additions and 42 deletions

View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Forces
{
/// <summary>
/// Implement properties for concentrated load in beam
/// </summary>
public interface IConcentratedForce : IBeamShearLoad
{
/// <summary>
/// Coordinate of location of force along beam, m
/// </summary>
double ForceCoordinate { get; set; }
/// <summary>
/// Value of force, N
/// </summary>
double ForceValue { get; set; }
}
}