예제 #1
0
        private void updateECoupling()
        {
            _cplCond = new CouplingCondition();
            List <string> sl = new List <string>();

            sl.Add("Stf: " + Axial_stiffness + " / " + Rotational_stiffness);

            _cplCond.CreateDottedLineSymbols(Value.GetConnectionLines(), sl);
        }
예제 #2
0
        private void updateSpring()
        {
            _cplCond = new CouplingCondition();
            List <string> sl = new List <string>();

            sl.Add("Stf: " + Axial_stiffness + " / " + Rotational_stiffness);

            _cplCond.CreateSpringSymbols(Value.GetSingleInputPoints(), sl, Direction);
        }
예제 #3
0
 private void updateECoupling()
 {
     _cplCond = new CouplingCondition();
     _cplCond.CreateDottedLineSymbols(Value.GetConnectionLines());
 }
예제 #4
0
 private void updateSpring()
 {
     _cplCond = new CouplingCondition();
     _cplCond.CreateSpringSymbols(Value.GetSingleInputPoints(), Direction);
 }