summaryrefslogtreecommitdiff
path: root/cad/plugins/CoNTub/HJ-params.desc
blob: 73caf2a2d9a330b7d27bffa9a57c3fc81dd7536d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# $Id$

# Copyright 2006-2007 Nanorex, Inc.  See LICENSE file for details. 
# Parameter-set description file. 

# This describes the parameters needed to generate a heterojunction
# (one of several structures that can be generated by this plugin),
# with info about how they can be presented in a parameter-editing dialog.

### WARNING: some fields are stubs, and the toplevel constructor is misconceived and needs revision --
# it should be something like parameter_set, not generator.

generator:
    caption: "Heterojunction"
    border_icon: "HJ_border_icon.png" 
        # border_icon is used in dialog window border (on some platforms) (maybe nim).
        # All these icons can be found in ./, ./images, or NE-1 builtin images (maybe nim).
        # Future: if we let the plugin author specify that path, that default value might look like
        # icon_path = "$plugin", "$plugin/images", "$images" 
        # (where $images refers to a built-in pathname of things plugins are allowed to look at).
    title: "Heterojunction"
    title_icon: "HJ_icon.png" 
        # title_icon is used for title area in dialog, and maybe for insert menu command (maybe nim).
        # Or we might decide that the insert menu item icon has to be specified elsewhere. 
    help_url: "http://www.nanoengineer-1.net/..."  ### replace this; not yet implemented in python code
    
    # WARNING: the following 'category' is nim in the parser of this file, 
    # and is instead hardcoded redundantly in the python code
    # (and has diverged from this file as of 060626):
    category: nanotubes # this will affect sponsor tags, default menu locations, ui command browsing...
    
    group: "Nanotube 1"

        parameter: L1
            label: "Length"
            type: float
            widget: lineedit
            min: 15.0
                # Note: Inforcement of min value does not appear to be implemented yet. Mark 060702.
            max: 9999.0
            default: 20.0
            suffix: " A"
            tooltip: "Nanotube length in Angstroms"

        parameter: n1
            label: "Chirality (n)"
            type: int
            widget: spinbox
            min: 1   
            max: 99  
                # Note: there is no intrinsic upper limit on n,
                # just practical issues about memory and runtime.
                # There is also a requirement that m <= n, but this is only enforced
                # in the generator code, not expressed (or yet able to be expressed)
                # in this parameter set description.
            default: 5
            tooltip: "Nanotube chirality parameter N"

        parameter: m1
            label: "Chirality (m)"
            type: int
            widget: spinbox
            min: 0
            max: 99
            default: 5
            tooltip: "Nanotube chirality parameter M"
    
    group: "Nanotube 2"

        parameter: L2
            label: "Length"
            type: float
            widget: lineedit
            min: 15.0
            max: 9999.0
            default: 20.0
            suffix: " A"
            tooltip: "Nanotube length in Angstroms"

        parameter: n2
            label: "Chirality (n)"
            type: int
            widget: spinbox
            min: 1   
            max: 99
            default: 10
            tooltip: "Nanotube chirality parameter N"

        parameter: m2
            label: "Chirality (m)"
            type: int
            widget: spinbox
            min: 0
            max: 99
            default: 10
            tooltip: "Nanotube chirality parameter M"

    group: "Both tubes"
        parameter: T
            label: "Endings"
            type: str
            widget: combobox
                item: "None"
                    value: 0 
                    # WARNING: these "items values" are not currently used [060626], 
                    # but kluged in a hardcoded table in the python code
                item: "Hydrogen"
                    value: 1
                item: "Nitrogen"
                    value: 7
            default: "None" 
            tooltip: "type of termination to use on both ends"

# end