RootFinder Module

module~~rootfinder~~UsesGraph module~rootfinder RootFinder module~general General module~general->module~rootfinder module~dataglobals DataGlobals module~dataglobals->module~rootfinder module~datarootfinder DataRootFinder module~datarootfinder->module~rootfinder module~datainterfaces DataInterfaces module~datainterfaces->module~rootfinder module~dataprecisionglobals DataPrecisionGlobals module~dataprecisionglobals->module~rootfinder module~dataprecisionglobals->module~general module~dataprecisionglobals->module~dataglobals module~dataprecisionglobals->module~datarootfinder module~dataprecisionglobals->module~datainterfaces
Help

Used By

module~~rootfinder~~UsedByGraph module~rootfinder RootFinder proc~traceindividualcontroller TraceIndividualController module~rootfinder->proc~traceindividualcontroller proc~setupindividualcontrollertracer SetupIndividualControllerTracer module~rootfinder->proc~setupindividualcontrollertracer proc~findrootsimplecontroller FindRootSimpleController module~rootfinder->proc~findrootsimplecontroller proc~initcontroller InitController module~rootfinder->proc~initcontroller proc~calcsimplecontroller CalcSimpleController module~rootfinder->proc~calcsimplecontroller proc~checksimplecontroller CheckSimpleController module~rootfinder->proc~checksimplecontroller
Help


Functions

private function CheckInternalConsistency(RootFinderData)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(in) :: RootFinderData

Return Value integer

public function CheckRootFinderCandidate(RootFinderData, X)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(in) :: RootFinderData
real(kind=r64), intent(in) :: X

Return Value logical

private function CheckMinMaxRange(RootFinderData, X)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(in) :: RootFinderData
real(kind=r64), intent(in) :: X

Return Value logical

private function CheckLowerUpperBracket(RootFinderData, X)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(in) :: RootFinderData
real(kind=r64), intent(in) :: X

Return Value logical

private function CheckSlope(RootFinderData)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(in) :: RootFinderData

Return Value logical

private function CheckNonSingularity(RootFinderData)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(in) :: RootFinderData

Return Value logical

private function CheckMinConstraint(RootFinderData)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(in) :: RootFinderData

Return Value logical

private function CheckMaxConstraint(RootFinderData)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(in) :: RootFinderData

Return Value logical

public function CheckRootFinderConvergence(RootFinderData, Y)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(in) :: RootFinderData
real(kind=r64), intent(in) :: Y

Return Value logical

private function CheckIncrementRoundOff(RootFinderData, X)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(in) :: RootFinderData
real(kind=r64), intent(in) :: X

Return Value logical

private function CheckBracketRoundOff(RootFinderData)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(in) :: RootFinderData

Return Value logical

private function BracketRoot(RootFinderData, XNext)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(in) :: RootFinderData
real(kind=r64), intent(out) :: XNext

Return Value logical

private function BisectionMethod(RootFinderData)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(inout) :: RootFinderData

Return Value real(kind=r64)

private function FalsePositionMethod(RootFinderData)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(inout) :: RootFinderData

Return Value real(kind=r64)

private function SecantMethod(RootFinderData)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(inout) :: RootFinderData

Return Value real(kind=r64)

private function SecantFormula(RootFinderData, XNext)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(in) :: RootFinderData
real(kind=r64), intent(out) :: XNext

Return Value logical

private function BrentMethod(RootFinderData)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(inout) :: RootFinderData

Return Value real(kind=r64)


Subroutines

public subroutine SetupRootFinder(RootFinderData, SlopeType, MethodType, TolX, ATolX, ATolY)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(inout) :: RootFinderData
integer, intent(in) :: SlopeType
integer, intent(in) :: MethodType
real(kind=r64), intent(in) :: TolX
real(kind=r64), intent(in) :: ATolX
real(kind=r64), intent(in) :: ATolY

private subroutine ResetRootFinder(RootFinderData, XMin, XMax)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(inout) :: RootFinderData
real(kind=r64), intent(in) :: XMin
real(kind=r64), intent(in) :: XMax

public subroutine InitializeRootFinder(RootFinderData, XMin, XMax)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(inout) :: RootFinderData
real(kind=r64), intent(in) :: XMin
real(kind=r64), intent(in) :: XMax

public subroutine IterateRootFinder(RootFinderData, X, Y, IsDoneFlag)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(inout) :: RootFinderData
real(kind=r64), intent(in) :: X
real(kind=r64), intent(in) :: Y
logical, intent(out), optional :: IsDoneFlag

private subroutine UpdateMinMax(RootFinderData, X, Y)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(inout) :: RootFinderData
real(kind=r64), intent(in) :: X
real(kind=r64), intent(in) :: Y

private subroutine UpdateBracket(RootFinderData, X, Y)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(inout) :: RootFinderData
real(kind=r64), intent(in) :: X
real(kind=r64), intent(in) :: Y

private subroutine UpdateHistory(RootFinderData, X, Y)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(inout) :: RootFinderData
real(kind=r64), intent(in) :: X
real(kind=r64), intent(in) :: Y

private subroutine UpdateRootFinder(RootFinderData, X, Y)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(inout) :: RootFinderData
real(kind=r64), intent(in) :: X
real(kind=r64), intent(in) :: Y

private subroutine SortHistory(N, History)

Arguments

Type IntentOptional AttributesName
integer, intent(in) :: N
type(PointType), intent(inout) :: History(:)

private subroutine AdvanceRootFinder(RootFinderData)

Arguments

Type IntentOptional AttributesName
type(RootFinderDataType), intent(inout) :: RootFinderData

public subroutine WriteRootFinderTraceHeader(TraceFileUnit)

Arguments

Type IntentOptional AttributesName
integer, intent(in) :: TraceFileUnit

public subroutine WriteRootFinderTrace(TraceFileUnit, RootFinderData)

Arguments

Type IntentOptional AttributesName
integer, intent(in) :: TraceFileUnit
type(RootFinderDataType), intent(in) :: RootFinderData

private subroutine WritePoint(TraceFileUnit, PointData, ShowXValue)

Arguments

Type IntentOptional AttributesName
integer, intent(in) :: TraceFileUnit
type(PointType), intent(in) :: PointData
logical, intent(in) :: ShowXValue

public subroutine DebugRootFinder(FileUnit, RootFinderData)

Arguments

Type IntentOptional AttributesName
integer, intent(in) :: FileUnit
type(RootFinderDataType), intent(in) :: RootFinderData

public subroutine WriteRootFinderStatus(FileUnit, RootFinderData)

Arguments

Type IntentOptional AttributesName
integer, intent(in) :: FileUnit
type(RootFinderDataType), intent(in) :: RootFinderData


AirflowNetworkBalanceManager AirflowNetworkSolver BaseboardElectric BaseboardRadiator Boilers BoilerSteam BranchInputManager BranchNodeConnections ChillerAbsorption ChillerElectricEIR ChillerExhaustAbsorption ChillerGasAbsorption ChillerIndirectAbsorption ChillerReformulatedEIR CondenserLoopTowers ConductionTransferFunctionCalc ConvectionCoefficients CoolTower CostEstimateManager CrossVentMgr CTElectricGenerator CurveManager DataAirflowNetwork DataAirLoop DataAirSystems DataBranchAirLoopPlant DataBranchNodeConnections DataBSDFWindow DataComplexFenestration DataContaminantBalance DataConvergParams DataConversions DataCostEstimate DataDaylighting DataDaylightingDevices DataDefineEquip DataDElight DataEnvironment DataErrorTracking DataGenerators DataGlobalConstants DataGlobals DataHeatBalance DataHeatBalFanSys DataHeatBalSurface DataHVACControllers DataHVACGlobals DataInterfaces DataIPShortCuts DataLoopNode DataMoistureBalance DataMoistureBalanceEMPD DataOutputs DataPhotovoltaics DataPlant DataPlantPipingSystems DataPrecisionGlobals DataReportingFlags DataRoomAirModel DataRootFinder DataRuntimeLanguage DataShadowingCombinations DataSizing DataStringGlobals DataSurfaceColors DataSurfaceLists DataSurfaces DataSystemVariables DataTimings DataUCSDSharedData DataVectorTypes DataViewFactorInformation DataWater DataWindowEquivalentLayer DataZoneControls DataZoneEnergyDemands DataZoneEquipment DaylightingDevices DaylightingManager DELIGHTMANAGERF DELIGHTMANAGERF DemandManager DesiccantDehumidifiers DirectAirManager DisplacementVentMgr DualDuct DXCoils DXFEarClipping EarthTube EconomicLifeCycleCost EconomicTariff EcoRoofManager ElectricBaseboardRadiator EMSManager EvaporativeCoolers EvaporativeFluidCoolers ExteriorEnergyUse ExternalInterface FanCoilUnits Fans FaultsManager FluidCoolers FluidProperties FuelCellElectricGenerator Furnaces General GeneratorDynamicsManager GeneratorFuelSupply GlobalNames GroundHeatExchangers HeatBalanceAirManager HeatBalanceHAMTManager HeatBalanceIntRadExchange HeatBalanceManager HeatBalanceMovableInsulation HeatBalanceSurfaceManager HeatBalFiniteDiffManager HeatingCoils HeatPumpWaterToWaterCOOLING HeatPumpWaterToWaterHEATING HeatPumpWaterToWaterSimple HeatRecovery HighTempRadiantSystem Humidifiers HVACControllers HVACCooledBeam HVACDuct HVACDXHeatPumpSystem HVACDXSystem HVACHXAssistedCoolingCoil HVACInterfaceManager HVACManager HVACMultiSpeedHeatPump HVACSingleDuctInduc HVACStandAloneERV HVACUnitaryBypassVAV HVACUnitarySystem HVACVariableRefrigerantFlow HWBaseboardRadiator ICEngineElectricGenerator IceThermalStorage InputProcessor InternalHeatGains ISO_C_FUNCTION_BINDING ISO_C_FUNCTION_BINDING LowTempRadiantSystem ManageElectricPower MatrixDataManager MicroCHPElectricGenerator MicroturbineElectricGenerator MixedAir MixerComponent MoistureBalanceEMPDManager MundtSimMgr NodeInputManager NonZoneEquipmentManager OutAirNodeManager OutdoorAirUnit OutputProcessor OutputReportPredefined OutputReportTabular OutsideEnergySources PackagedTerminalHeatPump PackagedThermalStorageCoil Photovoltaics PhotovoltaicThermalCollectors PipeHeatTransfer Pipes PlantCentralGSHP PlantChillers PlantComponentTemperatureSources PlantCondLoopOperation PlantHeatExchangerFluidToFluid PlantLoadProfile PlantLoopEquip PlantLoopSolver PlantManager PlantPipingSystemsManager PlantPressureSystem PlantUtilities PlantValves PollutionModule PondGroundHeatExchanger PoweredInductionUnits Psychrometrics Pumps PurchasedAirManager RefrigeratedCase ReportSizingManager ReturnAirPathManager RoomAirModelManager RoomAirModelUserTempPattern RootFinder RuntimeLanguageProcessor ScheduleManager SetPointManager SimAirServingZones SimulationManager SingleDuct SizingManager SolarCollectors SolarReflectionManager SolarShading SortAndStringUtilities SplitterComponent SQLiteProcedures SQLiteProcedures StandardRatings SteamBaseboardRadiator SteamCoils SurfaceGeometry SurfaceGroundHeatExchanger SystemAvailabilityManager SystemReports TARCOGArgs TARCOGCommon TARCOGDeflection TARCOGGasses90 TARCOGGassesParams TARCOGMain TARCOGOutput TARCOGParams TarcogShading ThermalChimney ThermalComfort ThermalEN673Calc ThermalISO15099Calc TranspiredCollector UFADManager UnitHeater UnitVentilator UserDefinedComponents VariableSpeedCoils vectors VentilatedSlab WaterCoils WaterManager WaterThermalTanks WatertoAirHeatPump WatertoAirHeatPumpSimple WaterUse WeatherManager WindowAC WindowComplexManager WindowEquivalentLayer WindowManager WindTurbine ZoneAirLoopEquipmentManager ZoneContaminantPredictorCorrector ZoneDehumidifier ZoneEquipmentManager ZonePlenum ZoneTempPredictorCorrector