Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
seto77 committed Oct 14, 2020
1 parent a558987 commit e68d37e
Show file tree
Hide file tree
Showing 33 changed files with 7,758 additions and 7,783 deletions.
5 changes: 3 additions & 2 deletions Crystallography.Controls/Crystal/AtomControl.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

84 changes: 42 additions & 42 deletions Crystallography.Controls/Crystal/AtomControl.resx

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions Crystallography.Controls/Crystal/CrystalControl.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 11 additions & 1 deletion Crystallography.Controls/Crystal/CrystalControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,17 @@ private void CrystalControl_KeyDown(object sender, KeyEventArgs e)
crystal.Reserved = !crystal.Reserved;
}

#region EOSタブの入力設定
#region EOS関連

/// <summary>
/// 外部から呼び出されることを想定.
/// </summary>
public void CalculateEOS()
{
if (checkBoxUseEOS.Checked)
numericBoxPressure.Value = crystal.EOSCondition.GetPressure(crystal.Volume * 1000);
}

private void numericBoxEOS_State_ValueChanged(object sender, EventArgs e)
{
if (SkipEvent) return;
Expand Down
Loading

0 comments on commit e68d37e

Please sign in to comment.