mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
97 lines
2.9 KiB
C++
97 lines
2.9 KiB
C++
// Created on: 1996-02-01
|
|
// Created by: Philippe MANGIN
|
|
// Copyright (c) 1996-1999 Matra Datavision
|
|
// Copyright (c) 1999-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
#ifndef _FairCurve_EnergyOfBatten_HeaderFile
|
|
#define _FairCurve_EnergyOfBatten_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_DefineAlloc.hxx>
|
|
#include <Standard_Handle.hxx>
|
|
|
|
#include <Standard_Real.hxx>
|
|
#include <FairCurve_DistributionOfTension.hxx>
|
|
#include <FairCurve_DistributionOfSagging.hxx>
|
|
#include <FairCurve_AnalysisCode.hxx>
|
|
#include <FairCurve_Energy.hxx>
|
|
#include <Standard_Integer.hxx>
|
|
#include <TColStd_HArray1OfReal.hxx>
|
|
#include <TColgp_HArray1OfPnt2d.hxx>
|
|
#include <Standard_Boolean.hxx>
|
|
#include <math_Vector.hxx>
|
|
|
|
// resolve name collisions with X11 headers
|
|
#ifdef Status
|
|
#undef Status
|
|
#endif
|
|
|
|
//! Energy Criterium to minimize in Batten.
|
|
class FairCurve_EnergyOfBatten : public FairCurve_Energy
|
|
{
|
|
public:
|
|
|
|
DEFINE_STANDARD_ALLOC
|
|
|
|
|
|
//! Angles correspond to the Ox axis
|
|
Standard_EXPORT FairCurve_EnergyOfBatten(const Standard_Integer BSplOrder, const Handle(TColStd_HArray1OfReal)& FlatKnots, const Handle(TColgp_HArray1OfPnt2d)& Poles, const Standard_Integer ContrOrder1, const Standard_Integer ContrOrder2, const FairCurve_BattenLaw& Law, const Standard_Real LengthSliding, const Standard_Boolean FreeSliding = Standard_True, const Standard_Real Angle1 = 0, const Standard_Real Angle2 = 0);
|
|
|
|
//! return the lengthSliding = P1P2 + Sliding
|
|
Standard_Real LengthSliding() const;
|
|
|
|
//! return the status
|
|
FairCurve_AnalysisCode Status() const;
|
|
|
|
//! compute the variables <X> which correspond with the field <MyPoles>
|
|
Standard_EXPORT virtual Standard_Boolean Variable (math_Vector& X) const Standard_OVERRIDE;
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
//! compute the poles which correspond with the variable X
|
|
Standard_EXPORT virtual void ComputePoles (const math_Vector& X) Standard_OVERRIDE;
|
|
|
|
//! compute the energy in intermediate format
|
|
Standard_EXPORT virtual Standard_Boolean Compute (const Standard_Integer DerivativeOrder, math_Vector& Result) Standard_OVERRIDE;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
Standard_Real MyLengthSliding;
|
|
Standard_Real OriginalSliding;
|
|
FairCurve_BattenLaw MyBattenLaw;
|
|
FairCurve_DistributionOfTension MyTension;
|
|
FairCurve_DistributionOfSagging MySagging;
|
|
FairCurve_AnalysisCode MyStatus;
|
|
|
|
|
|
};
|
|
|
|
|
|
#include <FairCurve_EnergyOfBatten.lxx>
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _FairCurve_EnergyOfBatten_HeaderFile
|