Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - itsvikassh

Pages: [1]
1
General Questions and Answers / Re: Energy level of sub-band
« on: January 7, 2014, 13:28 »
thanks a lot..

2
General Questions and Answers / Energy level of sub-band
« on: December 28, 2013, 14:09 »
I want to calculate the capacitance of device.

For this, i need to find the difference between the energy levels of sub-bands and conductance and valence bands...

but i can not understand how to calculate the energy level of sub-bands?

please help..

3
Thanks...

4
Hello

i need a help.

Suppose i made a design containing CNTs or Graphene nanoribbons in ATK 12.2.8. Now i want to make a circuit based on that device like any logic device or memories.

Is it possible to import this device in any other CAD tool? or is there any method in ATK for power and delay analysis?


5
General Questions and Answers / Re: CNT-FET
« on: September 27, 2013, 18:35 »
thanks a lot.. :)

6
General Questions and Answers / CNT-FET
« on: September 27, 2013, 12:06 »
Can i design and simulate a CNT-Field effect transistor on ATK?Is there any manual for the same?

7
General Questions and Answers / Re: Add on Manager
« on: September 27, 2013, 12:04 »
ON WINDOWS 7

8
General Questions and Answers / Add on Manager
« on: September 26, 2013, 09:35 »
I have just installed ATK 12.8.2 in my machine.

As i want to open the AddOn manager. i have tried to open from help menu.but no window has been opened.

please help.

9
thanx anders for previous problem..

actually now there is problem in charge stability diagram

"
[array([-8., -6., -4., -2.,  0.,  2.,  4.,  6.,  8.]), array([-8., -6., -4., -2.,  0.,  2.,  4.,  6.,  8.]), array([-8., -6., -4., -2.,  0.,  2.,  4.,  6.,  8.]), array([-8., -6., -4., -2.,  0.,  0.,  2.,  4.,  6.,  8.]), array([-8., -6., -4., -2.,  0.,  2.,  4.,  6.,  8.])]
Traceback (most recent call last):
  File "c:\users\vikash\appdata\local\temp\5582308989099040.py", line 30, in <module>
    f = SplineInterpolation1D(voltage_list,energy_list[i+1]-energy_list)
ValueError: operands could not be broadcast together with shapes (10) (9) "

10
Hello

While running "readTotalEnergy" file, the following error showed:-

+------------------------------------------------------------------------------+
| NanoLanguageScript execution started                                         |
+------------------------------------------------------------------------------+
+------------------------------------------------------------------------------+
|                                                                              |
| Atomistix ToolKit 11.2.2 [Build 3069]                                        |
|                                                                              |
+------------------------------------------------------------------------------+
  File "c:\users\vikash\appdata\local\temp\4220524954374833.py", line 13
    return
SyntaxError: 'return' outside function
NanoLanguageScript execution failure
+------------------------------------------------------------------------------+
| NanoLanguageScript execution finished                                        |
+-------------------------------------------------




i have used the following script:




from NL.IO.NLSaveUtilities import nlinspect
#define function for reading in total energy and gate voltage data from a file
def readTotalEnergy(filename):
    """
    function for reading a list of total energies and gate voltages from a file
        @param filename            : filename of the netcdf file
        @return voltages, energies : list of gate voltages and energies
                                     found in filename
    """
if filename == None:
    return
#get list of data in file
file_data = nlinspect(filename)
if file_data == None:
   raise ValueError, "Wrong file format"
total_energy_list = numpy.array([])
gate_voltage_list = numpy.array([])
for id in file_data:
    if (id[0] == 'TotalEnergy'):
       total_energy=nlread(filename, object_id = id[1])[0]
       total_energy_list = numpy.append(total_energy_list,
                                        total_energy.evaluate().inUnitsOf(eV))
#extract the gate voltage from the id of the data
if id[1][0:3] == 'gID':
   gate_voltage = 0.0
else:
    gate_voltage = float(id[1].strip(
                   "abcdefghijklmnopqrstuvxyzABCDEFGHIJKLMNOPQRSTUVXYZ"))
gate_voltage_list = numpy.append(gate_voltage_list,gate_voltage)
if len(total_energy_list) ==0:
    raise ValueError, "No total energy in NC file"
#sort the data
index_list = numpy.argsort(gate_voltage_list)
return gate_voltage_list[index_list], total_energy_list[index_list]



please do help....

Pages: [1]