2026-07-10 10:38:57 +02:00

39 lines
880 B
Python

"""
Xiaojun Wang, Shu Tian, Bai Sun, Xiaoxia Li, Bolin Guo, Yushuang Zeng, Bing Li, Weiting Luo
Natural biomaterials to environment-friendly and sustainable nonvolatile memory device
Chemical Physics, Volume 513, 2018, Pages 7-12, ISSN 0301-0104
https://doi.org/10.1016/j.chemphys.2018.06.013
"""
def dead_cell(prev_val, t):
return '0'
def retention_expired(prev_val, t):
return '0'
datasheet = {
'name': 'ORANGE_NVM',
'max_cycles': 100,
't_retention': '500s',
'voltages': {
'set': 2.0,
'reset': -1.6,
'read': 1.3,
},
'eq_resistance': {
'0': '10.5K',
'1': '10',
},
'access_times': {
'set': '20n',
'reset': '20n',
'read': '20n',
},
'non_volatile': True,
'error_models': {
'RETENTION_EXPIRED': retention_expired,
'DEAD_CELL': dead_cell,
},
}