| 
            
              BeamForcessolve Method (Model, ListString, ListGuid, String, Double, Int32, ListListListListDouble)
             | 
          
        
         
            retrieve section forces along all elements.
            
 
    Namespace: 
   Karamba.Results
    Assembly:
   KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic static void solve(
	Model model,
	List<string> retElemIds,
	List<Guid> retElemGuids,
	string retLcId,
	double maxResDist,
	int maxResNum,
	out List<List<List<List<double>>>> modelState
)
Public Shared Sub solve ( 
	model As Model,
	retElemIds As List(Of String),
	retElemGuids As List(Of Guid),
	retLcId As String,
	maxResDist As Double,
	maxResNum As Integer,
	<OutAttribute> ByRef modelState As List(Of List(Of List(Of List(Of Double))))
)
public:
static void solve(
	Model^ model, 
	List<String^>^ retElemIds, 
	List<Guid>^ retElemGuids, 
	String^ retLcId, 
	double maxResDist, 
	int maxResNum, 
	[OutAttribute] List<List<List<List<double>^>^>^>^% modelState
)
static member solve : 
        model : Model * 
        retElemIds : List<string> * 
        retElemGuids : List<Guid> * 
        retLcId : string * 
        maxResDist : float * 
        maxResNum : int * 
        modelState : List<List<List<List<float>>>> byref -> unit 
Parameters
- model
 - Type: Karamba.ModelsModel
model with calculated displacements. - retElemIds
 - Type: System.Collections.GenericListString
list of identifiers of elements for which to retrieve results. - retElemGuids
 - Type: System.Collections.GenericListGuid
list of guids of elements for which to retrieve results. - retLcId
 - Type: SystemString
index of load-case for which to retrieve results. -1 means all load-cases. - maxResDist
 - Type: SystemDouble
maximum distance between points where section forces are determined. - maxResNum
 - Type: SystemInt32
maximum number of points where section forces are determined. Can be overruled by max_res_dist. - modelState
 - Type: System.Collections.GenericListListListListDouble
state of section forces in the model. List-structure: load-case/element/point/force-components. 
See Also