Skip to content
Snippets Groups Projects
Commit bfb85a2e authored by Alexandros Asonitis's avatar Alexandros Asonitis
Browse files

interface of secondary step

parent 9edbaeb3
No related branches found
No related tags found
No related merge requests found
%% Cell type:code id:6defdb49-06c2-469d-beb5-bc2e147e3f79 tags: %% Cell type:code id:6defdb49-06c2-469d-beb5-bc2e147e3f79 tags:
``` python ``` python
%run ADU.py %run ADU.py
``` ```
%% Output %% Output
%% Cell type:code id:6e60266b-666c-4118-9ead-7ca8ceea7bb6 tags: %% Cell type:code id:6e60266b-666c-4118-9ead-7ca8ceea7bb6 tags:
``` python ``` python
``` ```
......
...@@ -28,18 +28,43 @@ for i in range(2): ...@@ -28,18 +28,43 @@ for i in range(2):
display(sample_information) display(sample_information)
display(information_grid) display(information_grid)
print() print()
###end of sampling information#######################################
test_contacts=widgets.Checkbox(description = "Test of the Contacts",value = True,indent = False) test_contacts=widgets.Checkbox(description = "Test of the Contacts",value = True,indent = False)
display(test_contacts) display(test_contacts)
print() print()
options_integration=["SHORt","MEDium","LONG"]
hysteresis =["SINGLE","DOUBLE"]
transfer_curve=widgets.Checkbox(description = "Transfer Curve",value = True,indent = False) transfer_curve=widgets.Checkbox(description = "Transfer Curve",value = True,indent = False)
display(transfer_curve) integration_transfer = widgets.Dropdown(layout=Layout(height='auto', width='auto'),options=options_integration,value="MEDium",description='Integration Time',style =style)#integration time
display(widgets.HBox([transfer_curve,integration_transfer]))
print() print()
Vds_transfer = GridspecLayout(2,4)x
Vds_transfer[0:1,0] = widgets.Label("Vds",layout=Layout(height='auto', width='auto')) secondary_grid = GridspecLayout(4,4)
display(Vds_transfer) secondary_grid[:,0]=widgets.Label("Vds",layout=Layout(height='auto', width='auto'))
#first line
secondary_grid[0,1]=widgets.Label("Start(V)",layout=Layout(height='auto', width='auto'))
secondary_grid[0,2]=widgets.Label("Step(V)",layout=Layout(height='auto', width='auto'))
secondary_grid[0,3]=widgets.Label("Stop(V)",layout=Layout(height='auto', width='auto'))
#second line
secondary_grid[1,1]=widgets.BoundedFloatText(value=0,min=-100,max=100,step=1,layout=Layout(height='auto', width='auto'))
secondary_grid[1,2]=widgets.BoundedFloatText(value=1,min=-100,max=100,step=1,layout=Layout(height='auto', width='auto'))
secondary_grid[1,3]=widgets.BoundedFloatText(value=5,min=-100,max=100,step=1,layout=Layout(height='auto', width='auto'))
#third line
secondary_grid[2,1]=widgets.Label("Compliance(A)",layout=Layout(height='auto', width='auto'))
secondary_grid[2,3] =widgets.Label("Power Compliance(W) (0=OFF)",layout=Layout(height='auto', width='auto'))#mind the gap
#fourth line
secondary_grid[3,1]=widgets.BoundedFloatText(value=0.1,min=-0.1,max=0.1,step=0.01,layout=Layout(height='auto', width='auto'))
secondary_grid[3,3]=widgets.BoundedFloatText(value=1,min=-100,max=100,step=1,layout=Layout(height='auto', width='auto'))#mind the gap
display(secondary_grid)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment