完成调用丰的sif python算法 → 所有数据处理功能完成

This commit is contained in:
2022-01-14 11:56:12 +08:00
parent 8c78a0d715
commit a7cb3885db
16 changed files with 696 additions and 59 deletions

View File

@ -34,9 +34,16 @@
this.OpenProjectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.addToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveProjectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ExitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.preprocessToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.RadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.sifComputeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SvdToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.DoasToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SfmToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SfmGaussinToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SfldToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.Fld3ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
@ -59,7 +66,8 @@
this.NewProjectToolStripMenuItem,
this.OpenProjectToolStripMenuItem,
this.addToolStripMenuItem,
this.SaveProjectToolStripMenuItem});
this.SaveProjectToolStripMenuItem,
this.ExitToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(39, 21);
this.fileToolStripMenuItem.Text = "File";
@ -90,6 +98,13 @@
this.SaveProjectToolStripMenuItem.Size = new System.Drawing.Size(108, 22);
this.SaveProjectToolStripMenuItem.Text = "Save";
//
// ExitToolStripMenuItem
//
this.ExitToolStripMenuItem.Name = "ExitToolStripMenuItem";
this.ExitToolStripMenuItem.Size = new System.Drawing.Size(108, 22);
this.ExitToolStripMenuItem.Text = "Exit";
this.ExitToolStripMenuItem.Click += new System.EventHandler(this.ExitToolStripMenuItem_Click);
//
// preprocessToolStripMenuItem
//
this.preprocessToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
@ -107,10 +122,59 @@
//
// sifComputeToolStripMenuItem
//
this.sifComputeToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.SvdToolStripMenuItem,
this.DoasToolStripMenuItem,
this.SfmToolStripMenuItem,
this.SfmGaussinToolStripMenuItem,
this.SfldToolStripMenuItem,
this.Fld3ToolStripMenuItem});
this.sifComputeToolStripMenuItem.Name = "sifComputeToolStripMenuItem";
this.sifComputeToolStripMenuItem.Size = new System.Drawing.Size(87, 21);
this.sifComputeToolStripMenuItem.Text = "SifCompute";
//
// SvdToolStripMenuItem
//
this.SvdToolStripMenuItem.Name = "SvdToolStripMenuItem";
this.SvdToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
this.SvdToolStripMenuItem.Text = "Svd";
this.SvdToolStripMenuItem.Click += new System.EventHandler(this.SvdToolStripMenuItem_Click);
//
// DoasToolStripMenuItem
//
this.DoasToolStripMenuItem.Name = "DoasToolStripMenuItem";
this.DoasToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
this.DoasToolStripMenuItem.Text = "Doas";
this.DoasToolStripMenuItem.Click += new System.EventHandler(this.DoasToolStripMenuItem_Click);
//
// SfmToolStripMenuItem
//
this.SfmToolStripMenuItem.Name = "SfmToolStripMenuItem";
this.SfmToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
this.SfmToolStripMenuItem.Text = "Sfm";
this.SfmToolStripMenuItem.Click += new System.EventHandler(this.SfmToolStripMenuItem_Click);
//
// SfmGaussinToolStripMenuItem
//
this.SfmGaussinToolStripMenuItem.Name = "SfmGaussinToolStripMenuItem";
this.SfmGaussinToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
this.SfmGaussinToolStripMenuItem.Text = "Sfm gaussian";
this.SfmGaussinToolStripMenuItem.Click += new System.EventHandler(this.SfmGaussinToolStripMenuItem_Click);
//
// SfldToolStripMenuItem
//
this.SfldToolStripMenuItem.Name = "SfldToolStripMenuItem";
this.SfldToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
this.SfldToolStripMenuItem.Text = "Sfld";
this.SfldToolStripMenuItem.Click += new System.EventHandler(this.SfldToolStripMenuItem_Click);
//
// Fld3ToolStripMenuItem
//
this.Fld3ToolStripMenuItem.Name = "Fld3ToolStripMenuItem";
this.Fld3ToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
this.Fld3ToolStripMenuItem.Text = "Fld3";
this.Fld3ToolStripMenuItem.Click += new System.EventHandler(this.Fld3ToolStripMenuItem_Click);
//
// statusStrip1
//
this.statusStrip1.Location = new System.Drawing.Point(0, 428);
@ -129,6 +193,7 @@
this.MainMenuStrip = this.menuStrip1;
this.Name = "main";
this.Text = "easySif";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.main_FormClosing);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
@ -148,6 +213,13 @@
private System.Windows.Forms.ToolStripMenuItem RadToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem sifComputeToolStripMenuItem;
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.ToolStripMenuItem ExitToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem SvdToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem DoasToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem SfmToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem SfmGaussinToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem SfldToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem Fld3ToolStripMenuItem;
}
}