Click or drag to resize
Fermion.LoadOrbs Method
Loads orbital information from an array of strings.

Namespace: Microsoft.Research.Liquid
Assembly: Liquid1 (in Liquid1.dll) Version: 1.0.5981.24943 (1.0.*)
Syntax
F#
static member LoadOrbs : 
        dic : Dictionary<string, string> * 
        data : string[] -> Tuple<FSharpList<Tuple<int, int, float>>, FSharpList<Tuple<int, int, int, int, float>>, string, float, float> 

Parameters

dic
Type: System.Collections.Generic.Dictionary<String, String>
A dictionary of options. See the Remarks for details.
data
Type:System.String[]
An array of formatted strings containing orbital information. Each string corresponds to a single line in a .dat file. The string format is described in the Users Manual.

Return Value

Type: Tuple<FSharpList<Tuple<Int32, Int32, Double>>, FSharpList<Tuple<Int32, Int32, Int32, Int32, Double>>, String, Double, Double>
A tuple containing the single-orbital terms; the two-orbital terms; an informational string; and the nuclear energy. The orbital terms are in the proper format to pass to the Fermion constructor.
Remarks
The possible options to specify in the dictionary are: ... For more information, see the Users Manual.
See Also