Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Pepe-Marquez committed Dec 4, 2024
1 parent 1d68350 commit 807e285
Showing 1 changed file with 10 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
Dashboard,
Menu,
MenuItemHistogram,
MenuItemOption,
MenuItemPeriodicTable,
MenuItemTerms,
MenuSizeEnum,
Expand All @@ -26,11 +25,15 @@
description='Search entries of the perovskite solar cell database',
search_quantities=SearchQuantities(include=schemas),
columns=[
Column(quantity='entry_create_time', selected=True),
Column(
quantity='results.material.chemical_formula_descriptive',
selected=True,
label='Descriptive formula',
),
Column(
quantity='results.properties.optoelectronic.solar_cell.efficiency',
selected=True,
# format={'decimals': 2, 'mode': 'standard'},
format={'decimals': 2, 'mode': 'standard'},
label='Efficiency (%)',
),
Column(
Expand All @@ -42,20 +45,20 @@
Column(
quantity='results.properties.optoelectronic.solar_cell.short_circuit_current_density',
selected=True,
# format={'decimals': 3, 'mode': 'standard'},
format={'decimals': 3, 'mode': 'standard'},
unit='A/m**2',
),
Column(
quantity='results.properties.optoelectronic.solar_cell.fill_factor',
selected=True,
# format={'decimals': 3, 'mode': 'standard'},
format={'decimals': 3, 'mode': 'standard'},
),
Column(quantity='references', selected=True),
Column(quantity='results.material.chemical_formula_hill', label='Formula'),
Column(quantity='results.material.structural_type'),
Column(
quantity='results.properties.optoelectronic.solar_cell.illumination_intensity',
# format={'decimals': 3, 'mode': 'standard'},
format={'decimals': 3, 'mode': 'standard'},
label='Illum. intensity',
unit='W/m**2',
),
Expand Down Expand Up @@ -204,7 +207,7 @@
x=Axis(
search_quantity='data.cell.area_measured#perovskite_solar_cell_database.schema.PerovskiteSolarCell',
scale=ScaleEnum.LOG,
title='Total area',
title='Measured area',
unit='cm**2',
),
y=AxisScale(
Expand Down

0 comments on commit 807e285

Please sign in to comment.