GRIDAPPSD / GOSS-GridAPPS-D

15 stars 28 forks source link

Expected Results in display in visualization. #657

Closed Jeffrey-Simpson closed 4 years ago

Jeffrey-Simpson commented 6 years ago

Description of Issue

New feature. Expected Results in display in visualization.

Affected Version

Screenshots

Expected

Actual

Steps to Reproduce

Additional Details

bibiraju commented 6 years ago

Can you provide more details on what is expected?

Jeffrey-Simpson commented 6 years ago

Hello, Yes I can. This is place holder issue for now, but we can schedule a meeting and I can provide more detail. Thanks, -Jeff

From: bibiraju notifications@github.com Reply-To: GRIDAPPSD/GOSS-GridAPPS-D reply@reply.github.com Date: Thursday, August 9, 2018 at 10:25 AM To: GRIDAPPSD/GOSS-GridAPPS-D GOSS-GridAPPS-D@noreply.github.com Cc: "Simpson, Jeff" Jeff.Simpson@nrel.gov, Assign assign@noreply.github.com Subject: Re: [GRIDAPPSD/GOSS-GridAPPS-D] Expected Results in display in visualization. (#657)

Can you provide more details on what is expected?

— You are receiving this because you were assigned. Reply to this email directly, view it on GitHubhttps://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2FGRIDAPPSD%2FGOSS-GridAPPS-D%2Fissues%2F657%23issuecomment-411816872&data=02%7C01%7CJeff.Simpson%40nrel.gov%7Cbee15851bba34f6502bf08d5fe14c2f2%7Ca0f29d7e28cd4f5484427885aee7c080%7C0%7C0%7C636694287475797081&sdata=PWZgwJ9XD8a1mKKcT3zaL56mc%2B78dX%2BqWIg%2B6BOOgjU%3D&reserved=0, or mute the threadhttps://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fnotifications%2Funsubscribe-auth%2FAWR_WJT3NEIMNbh4vT2VPx8QbmcUdacaks5uPGKJgaJpZM4Vyuhr&data=02%7C01%7CJeff.Simpson%40nrel.gov%7Cbee15851bba34f6502bf08d5fe14c2f2%7Ca0f29d7e28cd4f5484427885aee7c080%7C0%7C0%7C636694287475797081&sdata=SPLmDNHz8BMl9UFzRmMj1oXgk%2FAHctedqevcmtdiM8E%3D&reserved=0.

Jeffrey-Simpson commented 6 years ago

image

Jeffrey-Simpson commented 6 years ago

Table construction:

DROP TABLE IF EXISTS expected_results; CREATE TABLE expected_results ( id int(11) NOT NULL AUTO_INCREMENT, test_id varchar(255) DEFAULT NULL, process_id varchar(255) DEFAULT NULL, mrid varchar(255) NOT NULL, property varchar(255) NOT NULL, expected varchar(255) NOT NULL, actual varchar(255) NOT NULL, simulation_time timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (id) ) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8 COMMENT='This table contains messages for expected results';

Sample output:

mysql> select * from expected_results; +-----+------------+------------+---------------------------------------+-----------+---------------------+---------------------+---------------------+ | id | test_id | process_id | mrid | property | expected | actual | simulation_time | +-----+------------+------------+---------------------------------------+-----------+---------------------+---------------------+---------------------+ | 422 | sample_app | 1646349208 | _2e0d7858-974f-403e-8631-4da1235f30b5 | angle | -25.781052149060198 | 20.181440216999917 | 2018-06-20 20:54:03 | | 423 | sample_app | 1646349208 | _2e0d7858-974f-403e-8631-4da1235f30b5 | magnitude | 1940888.324566626 | 1747843.5444602773 | 2018-06-20 20:54:03 | | 424 | sample_app | 1646349208 | _944fad4a-2541-44ff-8f88-0a5aa7a9d659 | value | 1 | 0 | 2018-06-20 20:54:03 | | 425 | sample_app | 1646349208 | _74653361-3b39-41af-8592-def0653ea623 | value | 1 | 0 | 2018-06-20 20:54:03 | | 426 | sample_app | 1646349208 | _c00e1902-cd87-4182-8367-c8f0ea97c552 | value | 1 | 0 | 2018-06-20 20:54:03 | | 427 | sample_app | 1646349208 | _80b4ce92-af77-485c-a8eb-f242f574bc8a | angle | -26.435534360876314 | 19.882774671730107 | 2018-06-20 20:54:03 | | 428 | sample_app | 1646349208 | _80b4ce92-af77-485c-a8eb-f242f574bc8a | magnitude | 1841123.2144119646 | 1639738.0754823901 | 2018-06-20 20:54:03 | | 429 | sample_app | 1646349208 | _42b7689a-0321-43ba-9d4a-0c257ccb23be | value | 1 | 0 | 2018-06-20 20:54:03 | | 430 | sample_app | 1646349208 | _551a5188-4850-4979-ad18-6c30091e7b57 | value | 1 | 0 | 2018-06-20 20:54:03 | +-----+------------+------------+---------------------------------------+-----------+---------------------+---------------------+---------------------+