select_all_timesteps#
- query_ent_var.select_all_timesteps() int #
Causes all current timesteps to be selected for querying.
This command is not generated by EnSight, but can be placed in a command file to generalize it so you do not have to know how many time steps are present. It can replace the following commands:query_ent_var: begin_simtime <time_value>query_ent_var: end_simtime <time_value>query_ent_var: number_of_sample_pts <total_points>- Examples:
ensight.part.select_begin(1) ensight.query_ent_var.begin() ensight.query_ent_var.description("") ensight.query_ent_var.query_type("generated") ensight.query_ent_var.select_all_timesteps() ensight.query_ent_var.constrain("node") ensight.query_ent_var.sample_by("value") ensight.query_ent_var.node_id(100) ensight.query_ent_var.variable_1("Stress") ensight.query_ent_var.generate_over("time") ensight.query_ent_var.variable_2("TIME") ensight.query_ent_var.end() ensight.query_ent_var.query() ensight.curve.select_begin(0)
- Returns:
zero on success, non-zero on error