Skip to content

Commit

Permalink
Merge pull request #53 from AliMatias/develop
Browse files Browse the repository at this point in the history
prepare release 0.6.0
  • Loading branch information
ldgobbi authored Aug 24, 2019
2 parents 07a9315 + 8a970aa commit 47aed02
Show file tree
Hide file tree
Showing 459 changed files with 90,665 additions and 49,261 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,4 @@ sysinfo.txt
New Unity Project/.vscode/settings.json
New Unity Project/Assets/Scenes/SampleScene.unity.orig.meta
*.orig
*.orig
128 changes: 77 additions & 51 deletions DB Scripts/DDL_create_tables_elementosTP.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

CREATE TABLE "elementos_info_basica"(
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
"numero_atomico" INTEGER NULL,
Expand All @@ -18,56 +17,68 @@ CREATE TABLE "elementos_info_basica"(
"caracteristicas" TEXT NULL,
"punto_fusion" TEXT NULL,
"punto_ebullicion" TEXT NULL,
"resumen" TEXT NULL);
"resumen" TEXT NULL,


CREATE TABLE "elementos_info_detalle"(
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
"numero_atomico" INTEGER NULL,
"isotopos_estables" TEXT NULL,
"isotopos_aplicaciones" TEXT NULL,
"tipo_electrico" TEXT NULL,
"radiactivo" TEXT NULL,
"abundancia_corteza_terrestre" TEXT NULL,
"descubrimiento" TEXT NULL,
"descubierto_por" TEXT NULL,
"angulos_de_red" TEXT NULL,
"vida_media" TEXT NULL,
"modulo_compresibilidad" TEXT NULL,
"dureza_brinell" TEXT NULL,
"presion_critica" TEXT NULL,
"temperatura_critica" TEXT NULL,
"conductividad_electrica" TEXT NULL,
"densidad" REAL NULL,
"radio_covalente" TEXT NULL,
"afinidad_electronica" TEXT NULL,
"punto_curie" TEXT NULL,
"modo_decaimiento" TEXT NULL,
"electronegatividad" REAL NULL,
"densidadliquida" TEXT NULL,
"constante_red" TEXT NULL,
"multiplicidad_atomica_gas" TEXT NULL,
"calor_de_fusion" TEXT NULL,
"calor_de_vaporizacion" TEXT NULL,
"tipo_magnetico" TEXT NULL,
"susceptibilidad_magnetica" TEXT NULL,
"volumen_molar" REAL NULL,
"radio_poisson" TEXT NULL,
"numeros_cuanticos" TEXT NULL,
"indice_refractivo" REAL NULL,
"resistividad" TEXT NULL,
"conductividad_termica" TEXT NULL,
"punto_superconductividad" TEXT NULL,
"expansion_termica" TEXT NULL,
"velocidad_sonido" TEXT NULL,
"numero_grupos_espaciales" REAL NULL,
"nombre_grupo_espacial" TEXT NULL,
"radio_van_der_waals" TEXT NULL,
"radio_atomico_en_angstroms" REAL NULL,
"radio_covalente_en_angstroms" REAL NULL,
"radio_van_der_waals_en_angstroms" REAL NULL,
"modulo_young" TEXT NULL,
"nombres_alotropicos" TEXT NULL,
"energias_de_ionizacion" TEXT NULL);
CONSTRAINT fk_elementos
FOREIGN KEY (numero_atomico)
REFERENCES valida_elementos(id)
);


CREATE TABLE "elementos_info_detalle" (
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
"numero_atomico" INTEGER,
"isotopos_estables" TEXT,
"isotopos_aplicaciones" TEXT,
"tipo_electrico" TEXT,
"radiactivo" TEXT,
"abundancia_corteza_terrestre" TEXT,
"descubrimiento" TEXT,
"descubierto_por" TEXT,
"angulos_de_red" TEXT,
"vida_media" TEXT,
"modulo_compresibilidad" TEXT,
"dureza_brinell" TEXT,
"presion_critica" TEXT,
"temperatura_critica" TEXT,
"conductividad_electrica" TEXT,
"densidad" REAL,
"radio_covalente" TEXT,
"afinidad_electronica" TEXT,
"punto_curie" TEXT,
"modo_decaimiento" TEXT,
"electronegatividad" REAL,
"densidadliquida" TEXT,
"constante_red" TEXT,
"multiplicidad_atomica_gas" TEXT,
"calor_de_fusion" TEXT,
"calor_de_vaporizacion" TEXT,
"tipo_magnetico" TEXT,
"susceptibilidad_magnetica" TEXT,
"volumen_molar" REAL,
"radio_poisson" TEXT,
"numeros_cuanticos" TEXT,
"indice_refractivo" REAL,
"resistividad" TEXT,
"conductividad_termica" TEXT,
"punto_superconductividad" TEXT,
"expansion_termica" TEXT,
"velocidad_sonido" TEXT,
"numero_grupos_espaciales" REAL,
"nombre_grupo_espacial" TEXT,
"radio_van_der_waals" TEXT,
"radio_atomico_en_angstroms" REAL,
"radio_covalente_en_angstroms" REAL,
"radio_van_der_waals_en_angstroms" REAL,
"modulo_young" TEXT,
"nombres_alotropicos" TEXT,
"energias_de_ionizacion" TEXT,

CONSTRAINT fk_elementos
FOREIGN KEY (numero_atomico)
REFERENCES valida_elementos(id)
);


CREATE TABLE "isotopos"(
Expand All @@ -78,7 +89,17 @@ CREATE TABLE "isotopos"(
"numero_masa" INTEGER NULL,
"masa_atomica_relativa" TEXT NULL,
"composicion_isotopica" TEXT NULL,
"peso_atomico_estandar" TEXT NULL);
"peso_atomico_estandar" TEXT NULL,

CONSTRAINT fk_isotopos
FOREIGN KEY (id)
REFERENCES valida_isotopos(id),

CONSTRAINT fk_elementos
FOREIGN KEY (numero_atomico)
REFERENCES valida_elementos(id)
);


CREATE TABLE "valida_elementos" (
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
Expand Down Expand Up @@ -110,5 +131,10 @@ CREATE TABLE "elementos_orbitas"(
"nombre_capa" TEXT NULL,
"max_electrones" INTEGER NULL);

CREATE TABLE sugerencias (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
id_elemento INTEGER NOT NULL,
id_sugerido INTEGER NOT NULL
);


13 changes: 11 additions & 2 deletions DB Scripts/DDL_create_tables_moleculas.sql
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,15 @@ CREATE TABLE "moleculas_posicion3D_element"(
"posZ" INTEGER,
"escala" INTEGER,
"conexion" INTEGER NULL,
"tipo_conexion" INTEGER NULL
"tipo_linea" INTEGER NULL);
"tipo_conexion" INTEGER NULL,
"tipo_linea" INTEGER NULL,

CONSTRAINT fk_moleculas
FOREIGN KEY (id_molecula)
REFERENCES moleculas_lista(id),

CONSTRAINT fk_elementos
FOREIGN KEY (id_elemento)
REFERENCES valida_elementos(id)
);

418 changes: 209 additions & 209 deletions DB Scripts/INSERT_elementos_info_detalle.sql

Large diffs are not rendered by default.

Loading

0 comments on commit 47aed02

Please sign in to comment.